Class AWSAPICallViaCloudTrail.Overrides
(experimental) Type definition for Overrides.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.ECS.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class AWSAPICallViaCloudTrail.Overrides : AWSAPICallViaCloudTrail.IOverrides
Syntax (vb)
Public Class AWSAPICallViaCloudTrail.Overrides Implements AWSAPICallViaCloudTrail.IOverrides
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 environment;
var resourceRequirements;
var overrides = new Overrides {
ContainerOverrides = new [] { new OverridesItem {
Command = new [] { "command" },
Cpu = new [] { "cpu" },
Environment = new [] { environment },
Memory = new [] { "memory" },
Name = new [] { "name" },
ResourceRequirements = new [] { resourceRequirements }
} }
};
Synopsis
Constructors
| Overrides() | (experimental) Type definition for Overrides. |
Properties
| ContainerOverrides | (experimental) containerOverrides property. |
Constructors
Overrides()
(experimental) Type definition for Overrides.
public Overrides()
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 environment;
var resourceRequirements;
var overrides = new Overrides {
ContainerOverrides = new [] { new OverridesItem {
Command = new [] { "command" },
Cpu = new [] { "cpu" },
Environment = new [] { environment },
Memory = new [] { "memory" },
Name = new [] { "name" },
ResourceRequirements = new [] { resourceRequirements }
} }
};
Properties
ContainerOverrides
(experimental) containerOverrides property.
public AWSAPICallViaCloudTrail.IOverridesItem[]? ContainerOverrides { get; set; }
Property Value
Remarks
Specify an array of string values to match this event if the actual value of containerOverrides 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