Interface AWSAPICallViaCloudTrail.Environment
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AWSAPICallViaCloudTrail.Environment.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.*;
Environment environment = Environment.builder()
.certificate(List.of("certificate"))
.computeType(List.of("computeType"))
.environmentVariables(List.of(EnvironmentItem.builder()
.name(List.of("name"))
.type(List.of("type"))
.value(List.of("value"))
.build()))
.image(List.of("image"))
.imagePullCredentialsType(List.of("imagePullCredentialsType"))
.privilegedMode(List.of("privilegedMode"))
.type(List.of("type"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAWSAPICallViaCloudTrail.Environmentstatic final classAn implementation forAWSAPICallViaCloudTrail.Environment -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) certificate property.(experimental) computeType property.(experimental) environmentVariables property.getImage()(experimental) image property.(experimental) imagePullCredentialsType property.(experimental) privilegedMode property.getType()(experimental) type property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificate
(experimental) certificate property.Specify an array of string values to match this event if the actual value of certificate 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
-
getComputeType
(experimental) computeType property.Specify an array of string values to match this event if the actual value of computeType 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
-
getEnvironmentVariables
@Stability(Experimental) @Nullable default List<AWSAPICallViaCloudTrail.EnvironmentItem> getEnvironmentVariables()(experimental) environmentVariables property.Specify an array of string values to match this event if the actual value of environmentVariables 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
-
getImage
(experimental) image property.Specify an array of string values to match this event if the actual value of image 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
-
getImagePullCredentialsType
(experimental) imagePullCredentialsType property.Specify an array of string values to match this event if the actual value of imagePullCredentialsType 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
-
getPrivilegedMode
(experimental) privilegedMode property.Specify an array of string values to match this event if the actual value of privilegedMode 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
-
getType
(experimental) type property.Specify an array of string values to match this event if the actual value of type 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
-