interface Overrides1Item
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Events.ClusterEvents.AWSAPICallViaCloudTrail.Overrides1Item |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/events#ClusterEvents_AWSAPICallViaCloudTrail_Overrides1Item |
Java | software.amazon.awscdk.mixins.preview.services.ecs.events.ClusterEvents.AWSAPICallViaCloudTrail.Overrides1Item |
Python | aws_cdk.mixins_preview.aws_ecs.events.ClusterEvents.AWSAPICallViaCloudTrail.Overrides1Item |
TypeScript | @aws-cdk/mixins-preview ยป aws_ecs ยป events ยป ClusterEvents ยป AWSAPICallViaCloudTrail ยป Overrides1Item |
Type definition for Overrides_1Item.
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';
declare const environment: any;
declare const resourceRequirements: any;
const overrides1Item: ecs_events.ClusterEvents.AWSAPICallViaCloudTrail.Overrides1Item = {
command: ['command'],
cpu: ['cpu'],
environment: [environment],
memory: ['memory'],
name: ['name'],
resourceRequirements: [resourceRequirements],
};
Properties
| Name | Type | Description |
|---|---|---|
| command? | string[] | command property. |
| cpu? | string[] | cpu property. |
| environment? | any[] | environment property. |
| memory? | string[] | memory property. |
| name? | string[] | name property. |
| resource | any[] | resourceRequirements property. |
command?
Type:
string[]
(optional, default: Do not filter on this field)
command property.
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.
cpu?
Type:
string[]
(optional, default: Do not filter on this field)
cpu property.
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.
environment?
Type:
any[]
(optional, default: Do not filter on this field)
environment property.
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.
memory?
Type:
string[]
(optional, default: Do not filter on this field)
memory property.
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.
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.
resourceRequirements?
Type:
any[]
(optional, default: Do not filter on this field)
resourceRequirements property.
Specify an array of string values to match this event if the actual value of resourceRequirements 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