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.batch.events.*;
RequestParameters requestParameters = RequestParameters.builder()
.containerOverrides(ContainerOverrides.builder()
.environment(List.of(ContainerOverridesItem.builder()
.name(List.of("name"))
.value(List.of("value"))
.build()))
.build())
.jobDefinition(List.of("jobDefinition"))
.jobName(List.of("jobName"))
.jobQueue(List.of("jobQueue"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAWSAPICallViaCloudTrail.RequestParametersstatic final classAn implementation forAWSAPICallViaCloudTrail.RequestParameters -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) containerOverrides property.(experimental) jobDefinition property.(experimental) jobName property.(experimental) jobQueue property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerOverrides
@Stability(Experimental) @Nullable default AWSAPICallViaCloudTrail.ContainerOverrides getContainerOverrides()(experimental) containerOverrides property.Specify an array of string values to match this event if the actual value of containerOverrides 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
-
getJobDefinition
(experimental) jobDefinition property.Specify an array of string values to match this event if the actual value of jobDefinition 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
-
getJobName
(experimental) jobName property.Specify an array of string values to match this event if the actual value of jobName 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
-
getJobQueue
(experimental) jobQueue property.Specify an array of string values to match this event if the actual value of jobQueue 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
-