Interface RepositoryEvents.AWSAPICallViaCloudTrail.RequestParameters
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RepositoryEvents.AWSAPICallViaCloudTrail.RequestParameters.Jsii$Proxy
- Enclosing class:
RepositoryEvents.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.ecr.events.*;
RequestParameters requestParameters = RequestParameters.builder()
.acceptedMediaTypes(List.of("acceptedMediaTypes"))
.imageIds(List.of(RequestParametersItem.builder()
.imageTag(List.of("imageTag"))
.build()))
.registryId(List.of("registryId"))
.repositoryName(List.of("repositoryName"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forRepositoryEvents.AWSAPICallViaCloudTrail.RequestParameters -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) acceptedMediaTypes property.(experimental) imageIds property.(experimental) registryId property.(experimental) repositoryName property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAcceptedMediaTypes
(experimental) acceptedMediaTypes property.Specify an array of string values to match this event if the actual value of acceptedMediaTypes 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
-
getImageIds
@Stability(Experimental) @Nullable default List<RepositoryEvents.AWSAPICallViaCloudTrail.RequestParametersItem> getImageIds()(experimental) imageIds property.Specify an array of string values to match this event if the actual value of imageIds 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
-
getRegistryId
(experimental) registryId property.Specify an array of string values to match this event if the actual value of registryId 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) repositoryName property.Specify an array of string values to match this event if the actual value of repositoryName 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
-
builder
@Stability(Experimental) static RepositoryEvents.AWSAPICallViaCloudTrail.RequestParameters.Builder builder()
-