interface AdditionalEventData
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Events.BucketEvents.AWSAPICallViaCloudTrail.AdditionalEventData |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/events#BucketEvents_AWSAPICallViaCloudTrail_AdditionalEventData |
Java | software.amazon.awscdk.mixins.preview.services.s3.events.BucketEvents.AWSAPICallViaCloudTrail.AdditionalEventData |
Python | aws_cdk.mixins_preview.aws_s3.events.BucketEvents.AWSAPICallViaCloudTrail.AdditionalEventData |
TypeScript | @aws-cdk/mixins-preview ยป aws_s3 ยป events ยป BucketEvents ยป AWSAPICallViaCloudTrail ยป AdditionalEventData |
Type definition for AdditionalEventData.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as s3_events } from '@aws-cdk/mixins-preview/aws-s3';
const additionalEventData: s3_events.BucketEvents.AWSAPICallViaCloudTrail.AdditionalEventData = {
authenticationMethod: ['authenticationMethod'],
bytesTransferredIn: ['bytesTransferredIn'],
bytesTransferredOut: ['bytesTransferredOut'],
cipherSuite: ['cipherSuite'],
objectRetentionInfo: {
legalHoldInfo: {
isUnderLegalHold: ['isUnderLegalHold'],
lastModifiedTime: ['lastModifiedTime'],
},
retentionInfo: {
lastModifiedTime: ['lastModifiedTime'],
retainUntilMode: ['retainUntilMode'],
retainUntilTime: ['retainUntilTime'],
},
},
signatureVersion: ['signatureVersion'],
xAmzId2: ['xAmzId2'],
};
Properties
| Name | Type | Description |
|---|---|---|
| authentication | string[] | AuthenticationMethod property. |
| bytes | string[] | bytesTransferredIn property. |
| bytes | string[] | bytesTransferredOut property. |
| cipher | string[] | CipherSuite property. |
| object | Object | objectRetentionInfo property. |
| signature | string[] | SignatureVersion property. |
| x | string[] | x-amz-id-2 property. |
authenticationMethod?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
bytesTransferredIn?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
bytesTransferredOut?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
cipherSuite?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
objectRetentionInfo?
Type:
Object
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
signatureVersion?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
xAmzId2?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript