Interface ClusterEvents.ECSContainerInstanceStateChange.IVersionInfo
(experimental) Type definition for VersionInfo.
Namespace: Amazon.CDK.Mixins.Preview.AWS.ECS.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface ClusterEvents.ECSContainerInstanceStateChange.IVersionInfo
Syntax (vb)
Public Interface ClusterEvents.ECSContainerInstanceStateChange.IVersionInfo
Remarks
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.ECS.Events;
var versionInfo = new VersionInfo {
AgentHash = new [] { "agentHash" },
AgentVersion = new [] { "agentVersion" },
DockerVersion = new [] { "dockerVersion" }
};
Synopsis
Properties
| AgentHash | (experimental) agentHash property. |
| AgentVersion | (experimental) agentVersion property. |
| DockerVersion | (experimental) dockerVersion property. |
Properties
AgentHash
(experimental) agentHash property.
string[]? AgentHash { get; }
Property Value
string[]
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental
AgentVersion
(experimental) agentVersion property.
string[]? AgentVersion { get; }
Property Value
string[]
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental
DockerVersion
(experimental) dockerVersion property.
string[]? DockerVersion { get; }
Property Value
string[]
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental