interface TaskDetails
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.DetectorEvents.GuardDutyFinding.TaskDetails |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#DetectorEvents_GuardDutyFinding_TaskDetails |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.DetectorEvents.GuardDutyFinding.TaskDetails |
Python | aws_cdk.mixins_preview.aws_guardduty.events.DetectorEvents.GuardDutyFinding.TaskDetails |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป DetectorEvents ยป GuardDutyFinding ยป TaskDetails |
Type definition for TaskDetails.
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 taskDetails: guardduty_events.DetectorEvents.GuardDutyFinding.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. |
| containers? | Task[] | containers property. |
| created | string[] | createdAt property. |
| definition | string[] | definitionArn property. |
| started | string[] | startedAt property. |
| started | string[] | startedBy property. |
| version? | string[] | version 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.
containers?
Type:
Task[]
(optional, default: Do not filter on this field)
containers property.
Specify an array of string values to match this event if the actual value of containers is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
createdAt?
Type:
string[]
(optional, default: Do not filter on this field)
createdAt property.
Specify an array of string values to match this event if the actual value of createdAt is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
definitionArn?
Type:
string[]
(optional, default: Do not filter on this field)
definitionArn property.
Specify an array of string values to match this event if the actual value of definitionArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
startedAt?
Type:
string[]
(optional, default: Do not filter on this field)
startedAt property.
Specify an array of string values to match this event if the actual value of startedAt is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
startedBy?
Type:
string[]
(optional, default: Do not filter on this field)
startedBy property.
Specify an array of string values to match this event if the actual value of startedBy is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
version?
Type:
string[]
(optional, default: Do not filter on this field)
version property.
Specify an array of string values to match this event if the actual value of version 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