NAME

Paws::CloudWatchEvents::PutTargets - Arguments for method PutTargets on Paws::CloudWatchEvents

DESCRIPTION

This class represents the parameters used for calling the method PutTargets on the Amazon EventBridge service. Use the attributes of this class as arguments to method PutTargets.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to PutTargets.

SYNOPSIS

my $events = Paws->service('CloudWatchEvents');
my $PutTargetsResponse = $events->PutTargets(
  Rule    => 'MyRuleName',
  Targets => [
    {
      Arn             => 'MyTargetArn',    # min: 1, max: 1600
      Id              => 'MyTargetId',     # min: 1, max: 64
      BatchParameters => {
        JobDefinition   => 'MyString',
        JobName         => 'MyString',
        ArrayProperties => {
          Size => 1,    # OPTIONAL
        },    # OPTIONAL
        RetryStrategy => {
          Attempts => 1,    # OPTIONAL
        },    # OPTIONAL
      },    # OPTIONAL
      EcsParameters => {
        TaskDefinitionArn    => 'MyArn',    # min: 1, max: 1600
        Group                => 'MyString',
        LaunchType           => 'EC2',      # values: EC2, FARGATE; OPTIONAL
        NetworkConfiguration => {
          AwsvpcConfiguration => {
            Subnets        => [ 'MyString', ... ],
            AssignPublicIp =>
              'ENABLED',    # values: ENABLED, DISABLED; OPTIONAL
            SecurityGroups => [ 'MyString', ... ],
          },    # OPTIONAL
        },    # OPTIONAL
        PlatformVersion => 'MyString',
        TaskCount       => 1,            # min: 1; OPTIONAL
      },    # OPTIONAL
      Input            => 'MyTargetInput',        # max: 8192; OPTIONAL
      InputPath        => 'MyTargetInputPath',    # max: 256; OPTIONAL
      InputTransformer => {
        InputTemplate => 'MyTransformerInput',    # min: 1, max: 8192
        InputPathsMap => {
          'MyInputTransformerPathKey' => 'MyTargetInputPath'
          ,    # key: min: 1, max: 256, value: max: 256; OPTIONAL
        },    # max: 10; OPTIONAL
      },    # OPTIONAL
      KinesisParameters => {
        PartitionKeyPath => 'MyTargetPartitionKeyPath',    # max: 256

      },    # OPTIONAL
      RoleArn              => 'MyRoleArn',    # min: 1, max: 1600; OPTIONAL
      RunCommandParameters => {
        RunCommandTargets => [
          {
            Key    => 'MyRunCommandTargetKey',    # min: 1, max: 128
            Values => [
              'MyRunCommandTargetValue', ...      # min: 1, max: 256
            ],    # min: 1, max: 50

          },
          ...
        ],    # min: 1, max: 5

      },    # OPTIONAL
      SqsParameters => {
        MessageGroupId => 'MyMessageGroupId',    # OPTIONAL
      },    # OPTIONAL
    },
    ...
  ],
  EventBusName => 'MyEventBusName',    # OPTIONAL
);

# Results:
my $FailedEntries    = $PutTargetsResponse->FailedEntries;
my $FailedEntryCount = $PutTargetsResponse->FailedEntryCount;

# Returns a L<Paws::CloudWatchEvents::PutTargetsResponse> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/events/PutTargets

ATTRIBUTES

EventBusName => Str

The name of the event bus associated with the rule. If you omit this, the default event bus is used.

REQUIRED Rule => Str

The name of the rule.

REQUIRED Targets => ArrayRef[Paws::CloudWatchEvents::Target]

The targets to update or add to the rule.

SEE ALSO

This class forms part of Paws, documenting arguments for method PutTargets in Paws::CloudWatchEvents

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues