interface EcsClusterDetails
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.DetectorEvents.GuardDutyFinding.EcsClusterDetails |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#DetectorEvents_GuardDutyFinding_EcsClusterDetails |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.DetectorEvents.GuardDutyFinding.EcsClusterDetails |
Python | aws_cdk.mixins_preview.aws_guardduty.events.DetectorEvents.GuardDutyFinding.EcsClusterDetails |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป DetectorEvents ยป GuardDutyFinding ยป EcsClusterDetails |
Type definition for EcsClusterDetails.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as guardduty_events } from '@aws-cdk/mixins-preview/aws-guardduty';
const ecsClusterDetails: guardduty_events.DetectorEvents.GuardDutyFinding.EcsClusterDetails = {
arn: ['arn'],
name: ['name'],
status: ['status'],
tags: [{
key: ['key'],
value: ['value'],
}],
taskDetails: {
arn: ['arn'],
containers: [{
image: ['image'],
name: ['name'],
}],
createdAt: ['createdAt'],
definitionArn: ['definitionArn'],
startedAt: ['startedAt'],
startedBy: ['startedBy'],
version: ['version'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string[] | arn property. |
| name? | string[] | name property. |
| status? | string[] | status property. |
| tags? | Ecs[] | tags property. |
| task | Task | taskDetails property. |
arn?
Type:
string[]
(optional, default: Do not filter on this field)
arn property.
Specify an array of string values to match this event if the actual value of arn 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.
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.
tags?
Type:
Ecs[]
(optional, default: Do not filter on this field)
tags property.
Specify an array of string values to match this event if the actual value of tags is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
taskDetails?
Type:
Task
(optional, default: Do not filter on this field)
taskDetails property.
Specify an array of string values to match this event if the actual value of taskDetails 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