interface AS2MDNReceiveFailedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Events.ConnectorEvents.AS2MDNReceiveFailed.AS2MDNReceiveFailedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/events#ConnectorEvents_AS2MDNReceiveFailed_AS2MDNReceiveFailedProps |
Java | software.amazon.awscdk.mixins.preview.services.transfer.events.ConnectorEvents.AS2MDNReceiveFailed.AS2MDNReceiveFailedProps |
Python | aws_cdk.mixins_preview.aws_transfer.events.ConnectorEvents.AS2MDNReceiveFailed.AS2MDNReceiveFailedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_transfer ยป events ยป ConnectorEvents ยป AS2MDNReceiveFailed ยป AS2MDNReceiveFailedProps |
Props type for Connector aws.transfer@AS2MDNReceiveFailed 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 aS2MDNReceiveFailedProps: transfer_events.ConnectorEvents.AS2MDNReceiveFailed.AS2MDNReceiveFailedProps = {
as2From: ['as2From'],
as2MessageId: ['as2MessageId'],
as2To: ['as2To'],
connectorId: ['connectorId'],
endTimestamp: ['endTimestamp'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
failureCode: ['failureCode'],
failureMessage: ['failureMessage'],
mdnMessageId: ['mdnMessageId'],
mdnSubject: ['mdnSubject'],
messageSubject: ['messageSubject'],
s3Attributes: {
fileBucket: ['fileBucket'],
fileKey: ['fileKey'],
jsonBucket: ['jsonBucket'],
jsonKey: ['jsonKey'],
mdnBucket: ['mdnBucket'],
mdnKey: ['mdnKey'],
},
startTimestamp: ['startTimestamp'],
statusCode: ['statusCode'],
transferId: ['transferId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| as2 | string[] | as2-from property. |
| as2 | string[] | as2-message-id property. |
| as2 | string[] | as2-to property. |
| connector | string[] | connector-id property. |
| end | string[] | end-timestamp property. |
| event | AWSEvent | EventBridge event metadata. |
| failure | string[] | failure-code property. |
| failure | string[] | failure-message property. |
| mdn | string[] | mdn-message-id property. |
| mdn | string[] | mdn-subject property. |
| message | string[] | message-subject property. |
| s3 | S3 | s3-attributes property. |
| start | string[] | start-timestamp 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.
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.
endTimestamp?
Type:
string[]
(optional, default: Do not filter on this field)
end-timestamp property.
Specify an array of string values to match this event if the actual value of end-timestamp 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.
mdnMessageId?
Type:
string[]
(optional, default: Do not filter on this field)
mdn-message-id property.
Specify an array of string values to match this event if the actual value of mdn-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.
mdnSubject?
Type:
string[]
(optional, default: Do not filter on this field)
mdn-subject property.
Specify an array of string values to match this event if the actual value of mdn-subject 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.
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.
startTimestamp?
Type:
string[]
(optional, default: Do not filter on this field)
start-timestamp property.
Specify an array of string values to match this event if the actual value of start-timestamp 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