Show / Hide Table of Contents

Class TransformationCompleted.InputFileS3Attributes

(experimental) Type definition for Input-file-s3-attributes.

Inheritance
object
TransformationCompleted.InputFileS3Attributes
Implements
TransformationCompleted.IInputFileS3Attributes
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.B2BI.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class TransformationCompleted.InputFileS3Attributes : TransformationCompleted.IInputFileS3Attributes
Syntax (vb)
Public Class TransformationCompleted.InputFileS3Attributes Implements TransformationCompleted.IInputFileS3Attributes
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.B2BI.Events;

             var inputFileS3Attributes = new InputFileS3Attributes {
                 Bucket = new [] { "bucket" },
                 ObjectKey = new [] { "objectKey" },
                 ObjectSizeBytes = new [] { "objectSizeBytes" }
             };

Synopsis

Constructors

InputFileS3Attributes()

(experimental) Type definition for Input-file-s3-attributes.

Properties

Bucket

(experimental) bucket property.

ObjectKey

(experimental) object-key property.

ObjectSizeBytes

(experimental) object-size-bytes property.

Constructors

InputFileS3Attributes()

(experimental) Type definition for Input-file-s3-attributes.

public InputFileS3Attributes()
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.B2BI.Events;

             var inputFileS3Attributes = new InputFileS3Attributes {
                 Bucket = new [] { "bucket" },
                 ObjectKey = new [] { "objectKey" },
                 ObjectSizeBytes = new [] { "objectSizeBytes" }
             };

Properties

Bucket

(experimental) bucket property.

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

string[]

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

ObjectKey

(experimental) object-key property.

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

string[]

Remarks

Specify an array of string values to match this event if the actual value of object-key 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

ObjectSizeBytes

(experimental) object-size-bytes property.

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

string[]

Remarks

Specify an array of string values to match this event if the actual value of object-size-bytes 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

TransformationCompleted.IInputFileS3Attributes
Back to top Generated by DocFX