interface InputFileS3Attributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.B2BI.Events.TransformationFailed.InputFileS3Attributes |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsb2bi/events#TransformationFailed_InputFileS3Attributes |
Java | software.amazon.awscdk.mixins.preview.services.b2bi.events.TransformationFailed.InputFileS3Attributes |
Python | aws_cdk.mixins_preview.aws_b2bi.events.TransformationFailed.InputFileS3Attributes |
TypeScript | @aws-cdk/mixins-preview ยป aws_b2bi ยป events ยป TransformationFailed ยป InputFileS3Attributes |
Type definition for Input-file-s3-attributes.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as b2bi_events } from '@aws-cdk/mixins-preview/aws-b2bi';
const inputFileS3Attributes: b2bi_events.TransformationFailed.InputFileS3Attributes = {
bucket: ['bucket'],
objectKey: ['objectKey'],
objectSizeBytes: ['objectSizeBytes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string[] | bucket property. |
| object | string[] | object-key property. |
| object | string[] | object-size-bytes property. |
bucket?
Type:
string[]
(optional, default: Do not filter on this field)
bucket property.
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.
objectKey?
Type:
string[]
(optional, default: Do not filter on this field)
object-key property.
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.
objectSizeBytes?
Type:
string[]
(optional, default: Do not filter on this field)
object-size-bytes property.
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.

.NET
Go
Java
Python
TypeScript