Interface RepositoryEvents.ECRReplicationAction.ECRReplicationActionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RepositoryEvents.ECRReplicationAction.ECRReplicationActionProps.Jsii$Proxy
- Enclosing class:
RepositoryEvents.ECRReplicationAction
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.ecr.events.*;
ECRReplicationActionProps eCRReplicationActionProps = ECRReplicationActionProps.builder()
.actionType(List.of("actionType"))
.eventMetadata(AWSEventMetadataProps.builder()
.region(List.of("region"))
.resources(List.of("resources"))
.version(List.of("version"))
.build())
.imageDigest(List.of("imageDigest"))
.imageTag(List.of("imageTag"))
.repositoryName(List.of("repositoryName"))
.result(List.of("result"))
.sourceAccount(List.of("sourceAccount"))
.sourceRegion(List.of("sourceRegion"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forRepositoryEvents.ECRReplicationAction.ECRReplicationActionProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) action-type property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) image-digest property.(experimental) image-tag property.(experimental) repository-name property.(experimental) result property.(experimental) source-account property.(experimental) source-region property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActionType
(experimental) action-type property.Specify an array of string values to match this event if the actual value of action-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
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
getImageDigest
(experimental) image-digest property.Specify an array of string values to match this event if the actual value of image-digest 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
-
getImageTag
(experimental) image-tag property.Specify an array of string values to match this event if the actual value of image-tag 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
-
getRepositoryName
(experimental) repository-name property.Specify an array of string values to match this event if the actual value of repository-name is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Filter with the Repository reference
-
getResult
(experimental) result property.Specify an array of string values to match this event if the actual value of result 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
-
getSourceAccount
(experimental) source-account property.Specify an array of string values to match this event if the actual value of source-account 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
-
getSourceRegion
(experimental) source-region property.Specify an array of string values to match this event if the actual value of source-region 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
@Stability(Experimental) static RepositoryEvents.ECRReplicationAction.ECRReplicationActionProps.Builder builder()
-