Interface BucketEvents.AWSAPICallViaCloudTrail.AdditionalEventData
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BucketEvents.AWSAPICallViaCloudTrail.AdditionalEventData.Jsii$Proxy
- Enclosing class:
BucketEvents.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.s3.events.*;
AdditionalEventData additionalEventData = AdditionalEventData.builder()
.authenticationMethod(List.of("authenticationMethod"))
.bytesTransferredIn(List.of("bytesTransferredIn"))
.bytesTransferredOut(List.of("bytesTransferredOut"))
.cipherSuite(List.of("cipherSuite"))
.objectRetentionInfo(ObjectRetentionInfo.builder()
.legalHoldInfo(LegalHoldInfo.builder()
.isUnderLegalHold(List.of("isUnderLegalHold"))
.lastModifiedTime(List.of("lastModifiedTime"))
.build())
.retentionInfo(RetentionInfo.builder()
.lastModifiedTime(List.of("lastModifiedTime"))
.retainUntilMode(List.of("retainUntilMode"))
.retainUntilTime(List.of("retainUntilTime"))
.build())
.build())
.signatureVersion(List.of("signatureVersion"))
.xAmzId2(List.of("xAmzId2"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBucketEvents.AWSAPICallViaCloudTrail.AdditionalEventDatastatic final classAn implementation forBucketEvents.AWSAPICallViaCloudTrail.AdditionalEventData -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) AuthenticationMethod property.(experimental) bytesTransferredIn property.(experimental) bytesTransferredOut property.(experimental) CipherSuite property.(experimental) objectRetentionInfo property.(experimental) SignatureVersion property.(experimental) x-amz-id-2 property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthenticationMethod
(experimental) AuthenticationMethod property.Specify an array of string values to match this event if the actual value of AuthenticationMethod 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
-
getBytesTransferredIn
(experimental) bytesTransferredIn property.Specify an array of string values to match this event if the actual value of bytesTransferredIn 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
-
getBytesTransferredOut
(experimental) bytesTransferredOut property.Specify an array of string values to match this event if the actual value of bytesTransferredOut 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
-
getCipherSuite
(experimental) CipherSuite property.Specify an array of string values to match this event if the actual value of CipherSuite 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
-
getObjectRetentionInfo
@Stability(Experimental) @Nullable default BucketEvents.AWSAPICallViaCloudTrail.ObjectRetentionInfo getObjectRetentionInfo()(experimental) objectRetentionInfo property.Specify an array of string values to match this event if the actual value of objectRetentionInfo 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
-
getSignatureVersion
(experimental) SignatureVersion property.Specify an array of string values to match this event if the actual value of SignatureVersion 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
-
getXAmzId2
(experimental) x-amz-id-2 property.Specify an array of string values to match this event if the actual value of x-amz-id-2 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.AWSAPICallViaCloudTrail.AdditionalEventData.Builder builder()
-