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.codebuild.events.*;
RequestParameters requestParameters = RequestParameters.builder()
.awsActId(List.of("awsActId"))
.invokedBy(List.of("invokedBy"))
.payerId(List.of("payerId"))
.userArn(List.of("userArn"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAWSAPICallViaCloudTrail.RequestParametersstatic final classAn implementation forAWSAPICallViaCloudTrail.RequestParameters -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) awsActId property.(experimental) invokedBy property.(experimental) payerId property.(experimental) userArn property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsActId
(experimental) awsActId property.Specify an array of string values to match this event if the actual value of awsActId 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
-
getInvokedBy
(experimental) invokedBy property.Specify an array of string values to match this event if the actual value of invokedBy 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
-
getPayerId
(experimental) payerId property.Specify an array of string values to match this event if the actual value of payerId 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
-
getUserArn
(experimental) userArn property.Specify an array of string values to match this event if the actual value of userArn 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
-