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