interface ResourceDetails
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Events.ClusterEvents.ECSContainerInstanceStateChange.ResourceDetails |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/events#ClusterEvents_ECSContainerInstanceStateChange_ResourceDetails |
Java | software.amazon.awscdk.mixins.preview.services.ecs.events.ClusterEvents.ECSContainerInstanceStateChange.ResourceDetails |
Python | aws_cdk.mixins_preview.aws_ecs.events.ClusterEvents.ECSContainerInstanceStateChange.ResourceDetails |
TypeScript | @aws-cdk/mixins-preview ยป aws_ecs ยป events ยป ClusterEvents ยป ECSContainerInstanceStateChange ยป ResourceDetails |
Type definition for ResourceDetails.
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 resourceDetails: ecs_events.ClusterEvents.ECSContainerInstanceStateChange.ResourceDetails = {
doubleValue: ['doubleValue'],
integerValue: ['integerValue'],
longValue: ['longValue'],
name: ['name'],
stringSetValue: ['stringSetValue'],
type: ['type'],
};
Properties
| Name | Type | Description |
|---|---|---|
| double | string[] | doubleValue property. |
| integer | string[] | integerValue property. |
| long | string[] | longValue property. |
| name? | string[] | name property. |
| string | string[] | stringSetValue property. |
| type? | string[] | type property. |
doubleValue?
Type:
string[]
(optional, default: Do not filter on this field)
doubleValue property.
Specify an array of string values to match this event if the actual value of doubleValue is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
integerValue?
Type:
string[]
(optional, default: Do not filter on this field)
integerValue property.
Specify an array of string values to match this event if the actual value of integerValue is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
longValue?
Type:
string[]
(optional, default: Do not filter on this field)
longValue property.
Specify an array of string values to match this event if the actual value of longValue 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.
stringSetValue?
Type:
string[]
(optional, default: Do not filter on this field)
stringSetValue property.
Specify an array of string values to match this event if the actual value of stringSetValue 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