ActionTargetArgs constructor

const ActionTargetArgs({
  1. required Input<String> description,
  2. required Input<String> identifier,
  3. Input<String?>? name,
  4. Input<String?>? region,
})

Creates a new ActionTargetArgs. description The name of the custom action target. identifier The ID for the custom action target. name The description for the custom action target. region Region where this resource will be managed. Defaults to the Region set in the provider configuration.

Implementation

const ActionTargetArgs({
  required this.description,
  required this.identifier,
  this.name,
  this.region,
});