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