Interface GuardDutyFinding.KubernetesWorkloadDetailsItem
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GuardDutyFinding.KubernetesWorkloadDetailsItem.Jsii$Proxy
- Enclosing class:
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.*;
KubernetesWorkloadDetailsItem kubernetesWorkloadDetailsItem = KubernetesWorkloadDetailsItem.builder()
.image(List.of("image"))
.imagePrefix(List.of("imagePrefix"))
.name(List.of("name"))
.securityContext(SecurityContext.builder()
.privileged(List.of("privileged"))
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forGuardDutyFinding.KubernetesWorkloadDetailsItemstatic final classAn implementation forGuardDutyFinding.KubernetesWorkloadDetailsItem -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getImage()(experimental) image property.(experimental) imagePrefix property.getName()(experimental) name property.default GuardDutyFinding.SecurityContext(experimental) securityContext property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getImage
(experimental) image property.Specify an array of string values to match this event if the actual value of image 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
-
getImagePrefix
(experimental) imagePrefix property.Specify an array of string values to match this event if the actual value of imagePrefix 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
-
getName
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getSecurityContext
(experimental) securityContext property.Specify an array of string values to match this event if the actual value of securityContext 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
-