interface AS2PayloadSendFailedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Events.ConnectorEvents.AS2PayloadSendFailed.AS2PayloadSendFailedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/events#ConnectorEvents_AS2PayloadSendFailed_AS2PayloadSendFailedProps |
Java | software.amazon.awscdk.mixins.preview.services.transfer.events.ConnectorEvents.AS2PayloadSendFailed.AS2PayloadSendFailedProps |
Python | aws_cdk.mixins_preview.aws_transfer.events.ConnectorEvents.AS2PayloadSendFailed.AS2PayloadSendFailedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_transfer ยป events ยป ConnectorEvents ยป AS2PayloadSendFailed ยป AS2PayloadSendFailedProps |
Props type for Connector aws.transfer@AS2PayloadSendFailed event.
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 aS2PayloadSendFailedProps: transfer_events.ConnectorEvents.AS2PayloadSendFailed.AS2PayloadSendFailedProps = {
as2From: ['as2From'],
as2MessageId: ['as2MessageId'],
as2To: ['as2To'],
bytes: ['bytes'],
connectorId: ['connectorId'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
failureCode: ['failureCode'],
failureMessage: ['failureMessage'],
messageSubject: ['messageSubject'],
requesterFileName: ['requesterFileName'],
s3Attributes: {
fileBucket: ['fileBucket'],
fileKey: ['fileKey'],
jsonBucket: ['jsonBucket'],
jsonKey: ['jsonKey'],
},
statusCode: ['statusCode'],
transferId: ['transferId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| as2 | string[] | as2-from property. |
| as2 | string[] | as2-message-id property. |
| as2 | string[] | as2-to property. |
| bytes? | string[] | bytes property. |
| connector | string[] | connector-id property. |
| event | AWSEvent | EventBridge event metadata. |
| failure | string[] | failure-code property. |
| failure | string[] | failure-message property. |
| message | string[] | message-subject property. |
| requester | string[] | requester-file-name property. |
| s3 | S3 | s3-attributes property. |
| status | string[] | status-code property. |
| transfer | string[] | transfer-id property. |
as2From?
Type:
string[]
(optional, default: Do not filter on this field)
as2-from property.
Specify an array of string values to match this event if the actual value of as2-from is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
as2MessageId?
Type:
string[]
(optional, default: Do not filter on this field)
as2-message-id property.
Specify an array of string values to match this event if the actual value of as2-message-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
as2To?
Type:
string[]
(optional, default: Do not filter on this field)
as2-to property.
Specify an array of string values to match this event if the actual value of as2-to is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
bytes?
Type:
string[]
(optional, default: Do not filter on this field)
bytes property.
Specify an array of string values to match this event if the actual value of bytes is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
connectorId?
Type:
string[]
(optional, default: Filter with the Connector reference)
connector-id property.
Specify an array of string values to match this event if the actual value of connector-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
failureCode?
Type:
string[]
(optional, default: Do not filter on this field)
failure-code property.
Specify an array of string values to match this event if the actual value of failure-code is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
failureMessage?
Type:
string[]
(optional, default: Do not filter on this field)
failure-message property.
Specify an array of string values to match this event if the actual value of failure-message is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
messageSubject?
Type:
string[]
(optional, default: Do not filter on this field)
message-subject property.
Specify an array of string values to match this event if the actual value of message-subject is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
requesterFileName?
Type:
string[]
(optional, default: Do not filter on this field)
requester-file-name property.
Specify an array of string values to match this event if the actual value of requester-file-name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
s3Attributes?
Type:
S3
(optional, default: Do not filter on this field)
s3-attributes property.
Specify an array of string values to match this event if the actual value of s3-attributes is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
statusCode?
Type:
string[]
(optional, default: Do not filter on this field)
status-code property.
Specify an array of string values to match this event if the actual value of status-code is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transferId?
Type:
string[]
(optional, default: Do not filter on this field)
transfer-id property.
Specify an array of string values to match this event if the actual value of transfer-id 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