Show / Hide Table of Contents

Class ObjectACLUpdated.ObjectACLUpdatedProps

(experimental) Props type for aws.s3@ObjectACLUpdated event.

Inheritance
object
ObjectACLUpdated.ObjectACLUpdatedProps
Implements
ObjectACLUpdated.IObjectACLUpdatedProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.S3.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class ObjectACLUpdated.ObjectACLUpdatedProps : ObjectACLUpdated.IObjectACLUpdatedProps
Syntax (vb)
Public Class ObjectACLUpdated.ObjectACLUpdatedProps Implements ObjectACLUpdated.IObjectACLUpdatedProps
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 objectACLUpdatedProps = new ObjectACLUpdatedProps {
                 Bucket = new Bucket {
                     Name = new [] { "name" }
                 },
                 EventMetadata = new AWSEventMetadataProps {
                     Region = new [] { "region" },
                     Resources = new [] { "resources" },
                     Version = new [] { "version" }
                 },
                 Object = new ObjectType {
                     Etag = new [] { "etag" },
                     Key = new [] { "key" },
                     VersionId = new [] { "versionId" }
                 },
                 Requester = new [] { "requester" },
                 RequestId = new [] { "requestId" },
                 SourceIpAddress = new [] { "sourceIpAddress" },
                 Version = new [] { "version" }
             };

Synopsis

Constructors

ObjectACLUpdatedProps()

(experimental) Props type for aws.s3@ObjectACLUpdated event.

Properties

Bucket

(experimental) bucket property.

EventMetadata

(experimental) EventBridge event metadata.

Object

(experimental) object property.

RequestId

(experimental) request-id property.

Requester

(experimental) requester property.

SourceIpAddress

(experimental) source-ip-address property.

Version

(experimental) version property.

Constructors

ObjectACLUpdatedProps()

(experimental) Props type for aws.s3@ObjectACLUpdated event.

public ObjectACLUpdatedProps()
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 objectACLUpdatedProps = new ObjectACLUpdatedProps {
                 Bucket = new Bucket {
                     Name = new [] { "name" }
                 },
                 EventMetadata = new AWSEventMetadataProps {
                     Region = new [] { "region" },
                     Resources = new [] { "resources" },
                     Version = new [] { "version" }
                 },
                 Object = new ObjectType {
                     Etag = new [] { "etag" },
                     Key = new [] { "key" },
                     VersionId = new [] { "versionId" }
                 },
                 Requester = new [] { "requester" },
                 RequestId = new [] { "requestId" },
                 SourceIpAddress = new [] { "sourceIpAddress" },
                 Version = new [] { "version" }
             };

Properties

Bucket

(experimental) bucket property.

public ObjectACLUpdated.IBucket? Bucket { get; set; }
Property Value

ObjectACLUpdated.IBucket

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

EventMetadata

(experimental) EventBridge event metadata.

public IAWSEventMetadataProps? EventMetadata { get; set; }
Property Value

IAWSEventMetadataProps

Remarks

Default: - -

Stability: Experimental

Object

(experimental) object property.

public ObjectACLUpdated.IObjectType? Object { get; set; }
Property Value

ObjectACLUpdated.IObjectType

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

RequestId

(experimental) request-id property.

public string[]? RequestId { get; set; }
Property Value

string[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Requester

(experimental) requester property.

public string[]? Requester { get; set; }
Property Value

string[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

SourceIpAddress

(experimental) source-ip-address property.

public string[]? SourceIpAddress { get; set; }
Property Value

string[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Version

(experimental) version property.

public string[]? Version { get; set; }
Property Value

string[]

Remarks

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.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Implements

ObjectACLUpdated.IObjectACLUpdatedProps
Back to top Generated by DocFX