libZSservicesZSamazonka-cloudwatch-eventsZSamazonka-cloudwatch-events
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CloudWatchEvents.PutTargets

Description

Adds the specified targets to the specified rule, or updates the targets if they are already associated with the rule.

Targets are the resources that are invoked when a rule is triggered.

You can configure the following as targets for Events:

  • API destination
  • Amazon API Gateway REST API endpoints
  • API Gateway
  • Batch job queue
  • CloudWatch Logs group
  • CodeBuild project
  • CodePipeline
  • Amazon EC2 CreateSnapshot API call
  • Amazon EC2 RebootInstances API call
  • Amazon EC2 StopInstances API call
  • Amazon EC2 TerminateInstances API call
  • Amazon ECS tasks
  • Event bus in a different Amazon Web Services account or Region.

    You can use an event bus in the US East (N. Virginia) us-east-1, US West (Oregon) us-west-2, or Europe (Ireland) eu-west-1 Regions as a target for a rule.

  • Firehose delivery stream (Kinesis Data Firehose)
  • Inspector assessment template (Amazon Inspector)
  • Kinesis stream (Kinesis Data Stream)
  • Lambda function
  • Redshift clusters (Data API statement execution)
  • Amazon SNS topic
  • Amazon SQS queues (includes FIFO queues
  • SSM Automation
  • SSM OpsItem
  • SSM Run Command
  • Step Functions state machines

Creating rules with built-in targets is supported only in the Amazon Web Services Management Console. The built-in targets are EC2 CreateSnapshot API call, EC2 RebootInstances API call, EC2 StopInstances API call, and EC2 TerminateInstances API call.

For some target types, PutTargets provides target-specific parameters. If the target is a Kinesis data stream, you can optionally specify which shard the event goes to by using the KinesisParameters argument. To invoke a command on multiple EC2 instances with one rule, you can use the RunCommandParameters field.

To be able to make API calls against the resources that you own, Amazon EventBridge needs the appropriate permissions. For Lambda and Amazon SNS resources, EventBridge relies on resource-based policies. For EC2 instances, Kinesis Data Streams, Step Functions state machines and API Gateway REST APIs, EventBridge relies on IAM roles that you specify in the RoleARN argument in PutTargets. For more information, see Authentication and Access Control in the Amazon EventBridge User Guide.

If another Amazon Web Services account is in the same region and has granted you permission (using PutPermission), you can send events to that account. Set that account's event bus as a target of the rules in your account. To send the matched events to the other account, specify that account's event bus as the Arn value when you run PutTargets. If your account sends events to another account, your account is charged for each sent event. Each event sent to another account is charged as a custom event. The account receiving the event is not charged. For more information, see Amazon EventBridge Pricing.

Input, InputPath, and InputTransformer are not available with PutTarget if the target is an event bus of a different Amazon Web Services account.

If you are setting the event bus of another account as the target, and that account granted permission to your account through an organization instead of directly by the account ID, then you must specify a RoleArn with proper permissions in the Target structure. For more information, see Sending and Receiving Events Between Amazon Web Services Accounts in the Amazon EventBridge User Guide.

For more information about enabling cross-account events, see PutPermission.

Input, InputPath, and InputTransformer are mutually exclusive and optional parameters of a target. When a rule is triggered due to a matched event:

  • If none of the following arguments are specified for a target, then the entire event is passed to the target in JSON format (unless the target is Amazon EC2 Run Command or Amazon ECS task, in which case nothing from the event is passed to the target).
  • If Input is specified in the form of valid JSON, then the matched event is overridden with this constant.
  • If InputPath is specified in the form of JSONPath (for example, $.detail), then only the part of the event specified in the path is passed to the target (for example, only the detail part of the event is passed).
  • If InputTransformer is specified, then one or more specified JSONPaths are extracted from the event and used as values in a template that you specify as the input to the target.

When you specify InputPath or InputTransformer, you must use JSON dot notation, not bracket notation.

When you add targets to a rule and the associated rule triggers soon after, new or updated targets might not be immediately invoked. Allow a short period of time for changes to take effect.

This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount is non-zero in the response and each entry in FailedEntries provides the ID of the failed target and the error code.

Synopsis

Creating a Request

data PutTargets Source #

See: newPutTargets smart constructor.

Constructors

PutTargets' 

Fields

Instances

Instances details
Eq PutTargets Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

Read PutTargets Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

Show PutTargets Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

Generic PutTargets Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

Associated Types

type Rep PutTargets :: Type -> Type #

NFData PutTargets Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

Methods

rnf :: PutTargets -> () #

Hashable PutTargets Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

ToJSON PutTargets Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

AWSRequest PutTargets Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

Associated Types

type AWSResponse PutTargets #

ToHeaders PutTargets Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

Methods

toHeaders :: PutTargets -> [Header] #

ToPath PutTargets Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

ToQuery PutTargets Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

type Rep PutTargets Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

type Rep PutTargets = D1 ('MetaData "PutTargets" "Amazonka.CloudWatchEvents.PutTargets" "libZSservicesZSamazonka-cloudwatch-eventsZSamazonka-cloudwatch-events" 'False) (C1 ('MetaCons "PutTargets'" 'PrefixI 'True) (S1 ('MetaSel ('Just "eventBusName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "rule") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "targets") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Target)))))
type AWSResponse PutTargets Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

newPutTargets Source #

Create a value of PutTargets with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:eventBusName:PutTargets', putTargets_eventBusName - The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

$sel:rule:PutTargets', putTargets_rule - The name of the rule.

$sel:targets:PutTargets', putTargets_targets - The targets to update or add to the rule.

Request Lenses

putTargets_eventBusName :: Lens' PutTargets (Maybe Text) Source #

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

putTargets_rule :: Lens' PutTargets Text Source #

The name of the rule.

putTargets_targets :: Lens' PutTargets (NonEmpty Target) Source #

The targets to update or add to the rule.

Destructuring the Response

data PutTargetsResponse Source #

See: newPutTargetsResponse smart constructor.

Constructors

PutTargetsResponse' 

Fields

Instances

Instances details
Eq PutTargetsResponse Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

Read PutTargetsResponse Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

Show PutTargetsResponse Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

Generic PutTargetsResponse Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

Associated Types

type Rep PutTargetsResponse :: Type -> Type #

NFData PutTargetsResponse Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

Methods

rnf :: PutTargetsResponse -> () #

type Rep PutTargetsResponse Source # 
Instance details

Defined in Amazonka.CloudWatchEvents.PutTargets

type Rep PutTargetsResponse = D1 ('MetaData "PutTargetsResponse" "Amazonka.CloudWatchEvents.PutTargets" "libZSservicesZSamazonka-cloudwatch-eventsZSamazonka-cloudwatch-events" 'False) (C1 ('MetaCons "PutTargetsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "failedEntryCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "failedEntries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [PutTargetsResultEntry])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newPutTargetsResponse Source #

Create a value of PutTargetsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:failedEntryCount:PutTargetsResponse', putTargetsResponse_failedEntryCount - The number of failed entries.

$sel:failedEntries:PutTargetsResponse', putTargetsResponse_failedEntries - The failed target entries.

$sel:httpStatus:PutTargetsResponse', putTargetsResponse_httpStatus - The response's http status code.

Response Lenses