Class ECSTaskStateChange.OverridesItem
(experimental) Type definition for OverridesItem.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.ECS.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class ECSTaskStateChange.OverridesItem : ECSTaskStateChange.IOverridesItem
Syntax (vb)
Public Class ECSTaskStateChange.OverridesItem Implements ECSTaskStateChange.IOverridesItem
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 overridesItem = new OverridesItem {
Command = new [] { "command" },
Cpu = new [] { "cpu" },
Environment = new [] { new Dictionary<string, string> {
{ "environmentKey", "environment" }
} },
Memory = new [] { "memory" },
Name = new [] { "name" }
};
Synopsis
Constructors
| OverridesItem() | (experimental) Type definition for OverridesItem. |
Properties
| Command | (experimental) command property. |
| Cpu | (experimental) cpu property. |
| Environment | (experimental) environment property. |
| Memory | (experimental) memory property. |
| Name | (experimental) name property. |
Constructors
OverridesItem()
(experimental) Type definition for OverridesItem.
public OverridesItem()
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 overridesItem = new OverridesItem {
Command = new [] { "command" },
Cpu = new [] { "cpu" },
Environment = new [] { new Dictionary<string, string> {
{ "environmentKey", "environment" }
} },
Memory = new [] { "memory" },
Name = new [] { "name" }
};
Properties
Command
(experimental) command property.
public string[]? Command { get; set; }
Property Value
string[]
Remarks
Specify an array of string values to match this event if the actual value of command 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
Cpu
(experimental) cpu property.
public string[]? Cpu { get; set; }
Property Value
string[]
Remarks
Specify an array of string values to match this event if the actual value of cpu 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
Environment
(experimental) environment property.
public IDictionary<string, string>[]? Environment { get; set; }
Property Value
IDictionary<string, string>[]
Remarks
Specify an array of string values to match this event if the actual value of environment 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
Memory
(experimental) memory property.
public string[]? Memory { get; set; }
Property Value
string[]
Remarks
Specify an array of string values to match this event if the actual value of memory 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
Name
(experimental) name property.
public string[]? Name { get; set; }
Property Value
string[]
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental