interface S3Attributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Events.ConnectorEvents.AS2MDNReceiveFailed.S3Attributes |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/events#ConnectorEvents_AS2MDNReceiveFailed_S3Attributes |
Java | software.amazon.awscdk.mixins.preview.services.transfer.events.ConnectorEvents.AS2MDNReceiveFailed.S3Attributes |
Python | aws_cdk.mixins_preview.aws_transfer.events.ConnectorEvents.AS2MDNReceiveFailed.S3Attributes |
TypeScript | @aws-cdk/mixins-preview ยป aws_transfer ยป events ยป ConnectorEvents ยป AS2MDNReceiveFailed ยป S3Attributes |
Type definition for 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 transfer_events } from '@aws-cdk/mixins-preview/aws-transfer';
const s3Attributes: transfer_events.ConnectorEvents.AS2MDNReceiveFailed.S3Attributes = {
fileBucket: ['fileBucket'],
fileKey: ['fileKey'],
jsonBucket: ['jsonBucket'],
jsonKey: ['jsonKey'],
mdnBucket: ['mdnBucket'],
mdnKey: ['mdnKey'],
};
Properties
| Name | Type | Description |
|---|---|---|
| file | string[] | file-bucket property. |
| file | string[] | file-key property. |
| json | string[] | json-bucket property. |
| json | string[] | json-key property. |
| mdn | string[] | mdn-bucket property. |
| mdn | string[] | mdn-key property. |
fileBucket?
Type:
string[]
(optional, default: Do not filter on this field)
file-bucket property.
Specify an array of string values to match this event if the actual value of file-bucket is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
fileKey?
Type:
string[]
(optional, default: Do not filter on this field)
file-key property.
Specify an array of string values to match this event if the actual value of file-key is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
jsonBucket?
Type:
string[]
(optional, default: Do not filter on this field)
json-bucket property.
Specify an array of string values to match this event if the actual value of json-bucket is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
jsonKey?
Type:
string[]
(optional, default: Do not filter on this field)
json-key property.
Specify an array of string values to match this event if the actual value of json-key is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
mdnBucket?
Type:
string[]
(optional, default: Do not filter on this field)
mdn-bucket property.
Specify an array of string values to match this event if the actual value of mdn-bucket is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
mdnKey?
Type:
string[]
(optional, default: Do not filter on this field)
mdn-key property.
Specify an array of string values to match this event if the actual value of mdn-key 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