interface RequestParameters
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.States.Events.AWSAPICallViaCloudTrail.RequestParameters |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsstates/events#AWSAPICallViaCloudTrail_RequestParameters |
Java | software.amazon.awscdk.mixins.preview.services.states.events.AWSAPICallViaCloudTrail.RequestParameters |
Python | aws_cdk.mixins_preview.aws_states.events.AWSAPICallViaCloudTrail.RequestParameters |
TypeScript | @aws-cdk/mixins-preview ยป aws_states ยป events ยป AWSAPICallViaCloudTrail ยป RequestParameters |
Type definition for RequestParameters.
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';
declare const tags: any;
const requestParameters: states_events.AWSAPICallViaCloudTrail.RequestParameters = {
activityArn: ['activityArn'],
definition: ['definition'],
executionArn: ['executionArn'],
input: ['input'],
name: ['name'],
roleArn: ['roleArn'],
stateMachineArn: ['stateMachineArn'],
tags: [tags],
};
Properties
| Name | Type | Description |
|---|---|---|
| activity | string[] | activityArn property. |
| definition? | string[] | definition property. |
| execution | string[] | executionArn property. |
| input? | string[] | input property. |
| name? | string[] | name property. |
| role | string[] | roleArn property. |
| state | string[] | stateMachineArn property. |
| tags? | any[] | tags 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.
definition?
Type:
string[]
(optional, default: Do not filter on this field)
definition property.
Specify an array of string values to match this event if the actual value of definition 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.
input?
Type:
string[]
(optional, default: Do not filter on this field)
input property.
Specify an array of string values to match this event if the actual value of input is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
name?
Type:
string[]
(optional, default: Do not filter on this field)
name property.
Specify an array of string values to match this event if the actual value of name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
roleArn?
Type:
string[]
(optional, default: Do not filter on this field)
roleArn property.
Specify an array of string values to match this event if the actual value of roleArn 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.
tags?
Type:
any[]
(optional, default: Do not filter on this field)
tags property.
Specify an array of string values to match this event if the actual value of tags 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