interface AttachmentDetails
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Events.ClusterEvents.ECSTaskStateChange.AttachmentDetails |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/events#ClusterEvents_ECSTaskStateChange_AttachmentDetails |
Java | software.amazon.awscdk.mixins.preview.services.ecs.events.ClusterEvents.ECSTaskStateChange.AttachmentDetails |
Python | aws_cdk.mixins_preview.aws_ecs.events.ClusterEvents.ECSTaskStateChange.AttachmentDetails |
TypeScript | @aws-cdk/mixins-preview ยป aws_ecs ยป events ยป ClusterEvents ยป ECSTaskStateChange ยป AttachmentDetails |
Type definition for AttachmentDetails.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as ecs_events } from '@aws-cdk/mixins-preview/aws-ecs';
const attachmentDetails: ecs_events.ClusterEvents.ECSTaskStateChange.AttachmentDetails = {
details: {
name: ['name'],
value: ['value'],
},
id: ['id'],
status: ['status'],
type: ['type'],
};
Properties
| Name | Type | Description |
|---|---|---|
| details? | Details | details property. |
| id? | string[] | id property. |
| status? | string[] | status property. |
| type? | string[] | type property. |
details?
Type:
Details
(optional, default: Do not filter on this field)
details property.
Specify an array of string values to match this event if the actual value of details is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
id?
Type:
string[]
(optional, default: Do not filter on this field)
id property.
Specify an array of string values to match this event if the actual value of id 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.
type?
Type:
string[]
(optional, default: Do not filter on this field)
type property.
Specify an array of string values to match this event if the actual value of type 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