Show / Hide Table of Contents

Interface BucketEvents.AWSAPICallViaCloudTrail.IAdditionalEventData

(experimental) Type definition for AdditionalEventData.

Namespace: Amazon.CDK.Mixins.Preview.AWS.S3.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface BucketEvents.AWSAPICallViaCloudTrail.IAdditionalEventData
Syntax (vb)
Public Interface BucketEvents.AWSAPICallViaCloudTrail.IAdditionalEventData
Remarks

Stability: Experimental

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.S3.Events;

             var additionalEventData = new AdditionalEventData {
                 AuthenticationMethod = new [] { "authenticationMethod" },
                 BytesTransferredIn = new [] { "bytesTransferredIn" },
                 BytesTransferredOut = new [] { "bytesTransferredOut" },
                 CipherSuite = new [] { "cipherSuite" },
                 ObjectRetentionInfo = new ObjectRetentionInfo {
                     LegalHoldInfo = new LegalHoldInfo {
                         IsUnderLegalHold = new [] { "isUnderLegalHold" },
                         LastModifiedTime = new [] { "lastModifiedTime" }
                     },
                     RetentionInfo = new RetentionInfo {
                         LastModifiedTime = new [] { "lastModifiedTime" },
                         RetainUntilMode = new [] { "retainUntilMode" },
                         RetainUntilTime = new [] { "retainUntilTime" }
                     }
                 },
                 SignatureVersion = new [] { "signatureVersion" },
                 XAmzId2 = new [] { "xAmzId2" }
             };

Synopsis

Properties

AuthenticationMethod

(experimental) AuthenticationMethod property.

BytesTransferredIn

(experimental) bytesTransferredIn property.

BytesTransferredOut

(experimental) bytesTransferredOut property.

CipherSuite

(experimental) CipherSuite property.

ObjectRetentionInfo

(experimental) objectRetentionInfo property.

SignatureVersion

(experimental) SignatureVersion property.

XAmzId2

(experimental) x-amz-id-2 property.

Properties

AuthenticationMethod

(experimental) AuthenticationMethod property.

string[]? AuthenticationMethod { get; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

BytesTransferredIn

(experimental) bytesTransferredIn property.

string[]? BytesTransferredIn { get; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

BytesTransferredOut

(experimental) bytesTransferredOut property.

string[]? BytesTransferredOut { get; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

CipherSuite

(experimental) CipherSuite property.

string[]? CipherSuite { get; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

ObjectRetentionInfo

(experimental) objectRetentionInfo property.

BucketEvents.AWSAPICallViaCloudTrail.IObjectRetentionInfo? ObjectRetentionInfo { get; }
Property Value

BucketEvents.AWSAPICallViaCloudTrail.IObjectRetentionInfo

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

SignatureVersion

(experimental) SignatureVersion property.

string[]? SignatureVersion { get; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

XAmzId2

(experimental) x-amz-id-2 property.

string[]? XAmzId2 { get; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

Back to top Generated by DocFX