interface TransformationFailedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.B2BI.Events.TransformationFailed.TransformationFailedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsb2bi/events#TransformationFailed_TransformationFailedProps |
Java | software.amazon.awscdk.mixins.preview.services.b2bi.events.TransformationFailed.TransformationFailedProps |
Python | aws_cdk.mixins_preview.aws_b2bi.events.TransformationFailed.TransformationFailedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_b2bi ยป events ยป TransformationFailed ยป TransformationFailedProps |
Props type for aws.b2bi@TransformationFailed event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as b2bi_events } from '@aws-cdk/mixins-preview/aws-b2bi';
const transformationFailedProps: b2bi_events.TransformationFailed.TransformationFailedProps = {
ackErrorCodeDetected: ['ackErrorCodeDetected'],
ackGenerationStatus: ['ackGenerationStatus'],
endTimestamp: ['endTimestamp'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
failureCode: ['failureCode'],
failureMessage: ['failureMessage'],
inputFileS3Attributes: {
bucket: ['bucket'],
objectKey: ['objectKey'],
objectSizeBytes: ['objectSizeBytes'],
},
startTimestamp: ['startTimestamp'],
tradingPartnerId: ['tradingPartnerId'],
x12TransactionSet: ['x12TransactionSet'],
x12Version: ['x12Version'],
};
Properties
| Name | Type | Description |
|---|---|---|
| ack | string[] | ack-error-code-detected property. |
| ack | string[] | ack-generation-status property. |
| end | string[] | end-timestamp property. |
| event | AWSEvent | EventBridge event metadata. |
| failure | string[] | failure-code property. |
| failure | string[] | failure-message property. |
| input | Input | input-file-s3-attributes property. |
| start | string[] | start-timestamp property. |
| trading | string[] | trading-partner-id property. |
| x12 | string[] | x12-transaction-set property. |
| x12 | string[] | x12-version property. |
ackErrorCodeDetected?
Type:
string[]
(optional, default: Do not filter on this field)
ack-error-code-detected property.
Specify an array of string values to match this event if the actual value of ack-error-code-detected is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
ackGenerationStatus?
Type:
string[]
(optional, default: Do not filter on this field)
ack-generation-status property.
Specify an array of string values to match this event if the actual value of ack-generation-status 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.
inputFileS3Attributes?
Type:
Input
(optional, default: Do not filter on this field)
input-file-s3-attributes property.
Specify an array of string values to match this event if the actual value of input-file-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.
tradingPartnerId?
Type:
string[]
(optional, default: Do not filter on this field)
trading-partner-id property.
Specify an array of string values to match this event if the actual value of trading-partner-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
x12TransactionSet?
Type:
string[]
(optional, default: Do not filter on this field)
x12-transaction-set property.
Specify an array of string values to match this event if the actual value of x12-transaction-set is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
x12Version?
Type:
string[]
(optional, default: Do not filter on this field)
x12-version property.
Specify an array of string values to match this event if the actual value of x12-version 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