Interface BucketEvents.ObjectACLUpdated.ObjectACLUpdatedProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BucketEvents.ObjectACLUpdated.ObjectACLUpdatedProps.Jsii$Proxy
- Enclosing class:
BucketEvents.ObjectACLUpdated
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.s3.events.*;
ObjectACLUpdatedProps objectACLUpdatedProps = ObjectACLUpdatedProps.builder()
.bucket(Bucket.builder()
.name(List.of("name"))
.build())
.eventMetadata(AWSEventMetadataProps.builder()
.region(List.of("region"))
.resources(List.of("resources"))
.version(List.of("version"))
.build())
.object(ObjectType.builder()
.etag(List.of("etag"))
.key(List.of("key"))
.versionId(List.of("versionId"))
.build())
.requester(List.of("requester"))
.requestId(List.of("requestId"))
.sourceIpAddress(List.of("sourceIpAddress"))
.version(List.of("version"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBucketEvents.ObjectACLUpdated.ObjectACLUpdatedPropsstatic final classAn implementation forBucketEvents.ObjectACLUpdated.ObjectACLUpdatedProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) bucket property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) object property.(experimental) requester property.(experimental) request-id property.(experimental) source-ip-address property.(experimental) version property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
(experimental) bucket property.Specify an array of string values to match this event if the actual value of bucket 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: - -
-
getObject
(experimental) object property.Specify an array of string values to match this event if the actual value of object 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
-
getRequester
(experimental) requester property.Specify an array of string values to match this event if the actual value of requester 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
-
getRequestId
(experimental) request-id property.Specify an array of string values to match this event if the actual value of request-id 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
-
getSourceIpAddress
(experimental) source-ip-address property.Specify an array of string values to match this event if the actual value of source-ip-address 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
-
getVersion
(experimental) version property.Specify an array of string values to match this event if the actual value of version 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 BucketEvents.ObjectACLUpdated.ObjectACLUpdatedProps.Builder builder()
-