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

.NET
Go
Java
Python
TypeScript