Interface DetectorEvents.GuardDutyFinding.TaskDetails
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DetectorEvents.GuardDutyFinding.TaskDetails.Jsii$Proxy
- Enclosing class:
DetectorEvents.GuardDutyFinding
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.guardduty.events.*;
TaskDetails taskDetails = TaskDetails.builder()
.arn(List.of("arn"))
.containers(List.of(TaskDetailsItem.builder()
.image(List.of("image"))
.name(List.of("name"))
.build()))
.createdAt(List.of("createdAt"))
.definitionArn(List.of("definitionArn"))
.startedAt(List.of("startedAt"))
.startedBy(List.of("startedBy"))
.version(List.of("version"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDetectorEvents.GuardDutyFinding.TaskDetailsstatic final classAn implementation forDetectorEvents.GuardDutyFinding.TaskDetails -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArn
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getContainers
@Stability(Experimental) @Nullable default List<DetectorEvents.GuardDutyFinding.TaskDetailsItem> getContainers()(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getCreatedAt
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getDefinitionArn
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getStartedAt
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getStartedBy
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getVersion
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
-