interface AS2PayloadSendCompletedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Events.ConnectorEvents.AS2PayloadSendCompleted.AS2PayloadSendCompletedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/events#ConnectorEvents_AS2PayloadSendCompleted_AS2PayloadSendCompletedProps |
Java | software.amazon.awscdk.mixins.preview.services.transfer.events.ConnectorEvents.AS2PayloadSendCompleted.AS2PayloadSendCompletedProps |
Python | aws_cdk.mixins_preview.aws_transfer.events.ConnectorEvents.AS2PayloadSendCompleted.AS2PayloadSendCompletedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_transfer ยป events ยป ConnectorEvents ยป AS2PayloadSendCompleted ยป AS2PayloadSendCompletedProps |
Props type for Connector aws.transfer@AS2PayloadSendCompleted 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 aS2PayloadSendCompletedProps: transfer_events.ConnectorEvents.AS2PayloadSendCompleted.AS2PayloadSendCompletedProps = {
as2From: ['as2From'],
as2MessageId: ['as2MessageId'],
as2To: ['as2To'],
bytes: ['bytes'],
connectorId: ['connectorId'],
endTimestamp: ['endTimestamp'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
mdnSubject: ['mdnSubject'],
messageSubject: ['messageSubject'],
requesterFileName: ['requesterFileName'],
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. |
| bytes? | string[] | bytes property. |
| connector | string[] | connector-id property. |
| end | string[] | end-timestamp property. |
| event | AWSEvent | EventBridge event metadata. |
| mdn | string[] | mdn-subject property. |
| message | string[] | message-subject property. |
| requester | string[] | requester-file-name 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.
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.
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.
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.
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.
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