Interface AWSAPICallViaCloudTrail.RequestParameters
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AWSAPICallViaCloudTrail.RequestParameters.Jsii$Proxy
- Enclosing class:
AWSAPICallViaCloudTrail
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.states.events.*;
Object tags;
RequestParameters requestParameters = RequestParameters.builder()
.activityArn(List.of("activityArn"))
.definition(List.of("definition"))
.executionArn(List.of("executionArn"))
.input(List.of("input"))
.name(List.of("name"))
.roleArn(List.of("roleArn"))
.stateMachineArn(List.of("stateMachineArn"))
.tags(List.of(tags))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAWSAPICallViaCloudTrail.RequestParametersstatic final classAn implementation forAWSAPICallViaCloudTrail.RequestParameters -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) activityArn property.(experimental) definition property.(experimental) executionArn property.getInput()(experimental) input property.getName()(experimental) name property.(experimental) roleArn property.(experimental) stateMachineArn property.getTags()(experimental) tags property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActivityArn
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getDefinition
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getExecutionArn
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getInput
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getName
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getRoleArn
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getStateMachineArn
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getTags
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-