interface TranslateTextTranslationJobStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Translate.Events.TranslateTextTranslationJobStateChange.TranslateTextTranslationJobStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstranslate/events#TranslateTextTranslationJobStateChange_TranslateTextTranslationJobStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.translate.events.TranslateTextTranslationJobStateChange.TranslateTextTranslationJobStateChangeProps |
Python | aws_cdk.mixins_preview.aws_translate.events.TranslateTextTranslationJobStateChange.TranslateTextTranslationJobStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_translate ยป events ยป TranslateTextTranslationJobStateChange ยป TranslateTextTranslationJobStateChangeProps |
Props type for aws.translate@TranslateTextTranslationJobStateChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as translate_events } from '@aws-cdk/mixins-preview/aws-translate';
const translateTextTranslationJobStateChangeProps: translate_events.TranslateTextTranslationJobStateChange.TranslateTextTranslationJobStateChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
latestUpdateAttemptAt: ['latestUpdateAttemptAt'],
latestUpdateAttemptStatus: ['latestUpdateAttemptStatus'],
name: ['name'],
operation: ['operation'],
status: ['status'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| latest | string[] | latestUpdateAttemptAt property. |
| latest | string[] | latestUpdateAttemptStatus property. |
| name? | string[] | name property. |
| operation? | string[] | operation property. |
| status? | string[] | status property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
latestUpdateAttemptAt?
Type:
string[]
(optional, default: Do not filter on this field)
latestUpdateAttemptAt property.
Specify an array of string values to match this event if the actual value of latestUpdateAttemptAt is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
latestUpdateAttemptStatus?
Type:
string[]
(optional, default: Do not filter on this field)
latestUpdateAttemptStatus property.
Specify an array of string values to match this event if the actual value of latestUpdateAttemptStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
name?
Type:
string[]
(optional, default: Do not filter on this field)
name property.
Specify an array of string values to match this event if the actual value of name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
operation?
Type:
string[]
(optional, default: Do not filter on this field)
operation property.
Specify an array of string values to match this event if the actual value of operation is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
status?
Type:
string[]
(optional, default: Do not filter on this field)
status property.
Specify an array of string values to match this event if the actual value of status 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