interface KubernetesApiCallAction
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.DetectorEvents.GuardDutyFinding.KubernetesApiCallAction |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#DetectorEvents_GuardDutyFinding_KubernetesApiCallAction |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.DetectorEvents.GuardDutyFinding.KubernetesApiCallAction |
Python | aws_cdk.mixins_preview.aws_guardduty.events.DetectorEvents.GuardDutyFinding.KubernetesApiCallAction |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป DetectorEvents ยป GuardDutyFinding ยป KubernetesApiCallAction |
Type definition for KubernetesApiCallAction.
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 kubernetesApiCallAction: guardduty_events.DetectorEvents.GuardDutyFinding.KubernetesApiCallAction = {
parameters: ['parameters'],
remoteIpDetails: {
city: {
cityName: ['cityName'],
},
country: {
countryName: ['countryName'],
},
geoLocation: {
lat: ['lat'],
lon: ['lon'],
},
ipAddressV4: ['ipAddressV4'],
organization: {
asn: ['asn'],
asnOrg: ['asnOrg'],
isp: ['isp'],
org: ['org'],
},
},
requestUri: ['requestUri'],
sourceIPs: ['sourceIPs'],
statusCode: ['statusCode'],
userAgent: ['userAgent'],
verb: ['verb'],
};
Properties
| Name | Type | Description |
|---|---|---|
| parameters? | string[] | parameters property. |
| remote | Remote | remoteIpDetails property. |
| request | string[] | requestUri property. |
| source | string[] | sourceIPs property. |
| status | string[] | statusCode property. |
| user | string[] | userAgent property. |
| verb? | string[] | verb property. |
parameters?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
remoteIpDetails?
Type:
Remote
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
requestUri?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
sourceIPs?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
statusCode?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
userAgent?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.
verb?
Type:
string[]
(optional, default: Do not filter on this field)
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.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript