interface ResponseElements
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.States.Events.AWSAPICallViaCloudTrail.ResponseElements |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsstates/events#AWSAPICallViaCloudTrail_ResponseElements |
Java | software.amazon.awscdk.mixins.preview.services.states.events.AWSAPICallViaCloudTrail.ResponseElements |
Python | aws_cdk.mixins_preview.aws_states.events.AWSAPICallViaCloudTrail.ResponseElements |
TypeScript | @aws-cdk/mixins-preview ยป aws_states ยป events ยป AWSAPICallViaCloudTrail ยป ResponseElements |
Type definition for ResponseElements.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as states_events } from '@aws-cdk/mixins-preview/aws-states';
const responseElements: states_events.AWSAPICallViaCloudTrail.ResponseElements = {
activityArn: ['activityArn'],
creationDate: ['creationDate'],
executionArn: ['executionArn'],
startDate: ['startDate'],
stateMachineArn: ['stateMachineArn'],
stopDate: ['stopDate'],
updateDate: ['updateDate'],
};
Properties
| Name | Type | Description |
|---|---|---|
| activity | string[] | activityArn property. |
| creation | string[] | creationDate property. |
| execution | string[] | executionArn property. |
| start | string[] | startDate property. |
| state | string[] | stateMachineArn property. |
| stop | string[] | stopDate property. |
| update | string[] | updateDate property. |
activityArn?
Type:
string[]
(optional, default: Do not filter on this field)
activityArn property.
Specify an array of string values to match this event if the actual value of activityArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
creationDate?
Type:
string[]
(optional, default: Do not filter on this field)
creationDate property.
Specify an array of string values to match this event if the actual value of creationDate is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
executionArn?
Type:
string[]
(optional, default: Do not filter on this field)
executionArn property.
Specify an array of string values to match this event if the actual value of executionArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
startDate?
Type:
string[]
(optional, default: Do not filter on this field)
startDate property.
Specify an array of string values to match this event if the actual value of startDate is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
stateMachineArn?
Type:
string[]
(optional, default: Do not filter on this field)
stateMachineArn property.
Specify an array of string values to match this event if the actual value of stateMachineArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
stopDate?
Type:
string[]
(optional, default: Do not filter on this field)
stopDate property.
Specify an array of string values to match this event if the actual value of stopDate is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
updateDate?
Type:
string[]
(optional, default: Do not filter on this field)
updateDate property.
Specify an array of string values to match this event if the actual value of updateDate is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript