Interface GuardDutyFinding.KubernetesApiCallAction
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GuardDutyFinding.KubernetesApiCallAction.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.*;
KubernetesApiCallAction kubernetesApiCallAction = KubernetesApiCallAction.builder()
.parameters(List.of("parameters"))
.remoteIpDetails(RemoteIpDetails2.builder()
.city(City2.builder()
.cityName(List.of("cityName"))
.build())
.country(Country2.builder()
.countryName(List.of("countryName"))
.build())
.geoLocation(GeoLocation.builder()
.lat(List.of("lat"))
.lon(List.of("lon"))
.build())
.ipAddressV4(List.of("ipAddressV4"))
.organization(Organization2.builder()
.asn(List.of("asn"))
.asnOrg(List.of("asnOrg"))
.isp(List.of("isp"))
.org(List.of("org"))
.build())
.build())
.requestUri(List.of("requestUri"))
.sourceIPs(List.of("sourceIPs"))
.statusCode(List.of("statusCode"))
.userAgent(List.of("userAgent"))
.verb(List.of("verb"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forGuardDutyFinding.KubernetesApiCallActionstatic final classAn implementation forGuardDutyFinding.KubernetesApiCallAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) parameters property.(experimental) remoteIpDetails property.(experimental) requestUri property.(experimental) sourceIPs property.(experimental) statusCode property.(experimental) userAgent property.getVerb()(experimental) verb property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameters
(experimental) parameters property.Specify an array of string values to match this event if the actual value of parameters 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
-
getRemoteIpDetails
(experimental) remoteIpDetails property.Specify an array of string values to match this event if the actual value of remoteIpDetails 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
-
getRequestUri
(experimental) requestUri property.Specify an array of string values to match this event if the actual value of requestUri 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
-
getSourceIPs
(experimental) sourceIPs property.Specify an array of string values to match this event if the actual value of sourceIPs 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
-
getStatusCode
(experimental) statusCode property.Specify an array of string values to match this event if the actual value of statusCode 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
-
getUserAgent
(experimental) userAgent property.Specify an array of string values to match this event if the actual value of userAgent 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
-
getVerb
(experimental) verb property.Specify an array of string values to match this event if the actual value of verb 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
-