interface InstanceDetails
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.DetectorEvents.GuardDutyFinding.InstanceDetails |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#DetectorEvents_GuardDutyFinding_InstanceDetails |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.DetectorEvents.GuardDutyFinding.InstanceDetails |
Python | aws_cdk.mixins_preview.aws_guardduty.events.DetectorEvents.GuardDutyFinding.InstanceDetails |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป DetectorEvents ยป GuardDutyFinding ยป InstanceDetails |
Type definition for InstanceDetails.
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';
declare const ipv6Addresses: any;
const instanceDetails: guardduty_events.DetectorEvents.GuardDutyFinding.InstanceDetails = {
availabilityZone: ['availabilityZone'],
iamInstanceProfile: {
arn: ['arn'],
id: ['id'],
},
imageDescription: ['imageDescription'],
imageId: ['imageId'],
instanceId: ['instanceId'],
instanceState: ['instanceState'],
instanceType: ['instanceType'],
launchTime: ['launchTime'],
networkInterfaces: [{
ipv6Addresses: [ipv6Addresses],
networkInterfaceId: ['networkInterfaceId'],
privateDnsName: ['privateDnsName'],
privateIpAddress: ['privateIpAddress'],
privateIpAddresses: [{
privateDnsName: ['privateDnsName'],
privateIpAddress: ['privateIpAddress'],
}],
publicDnsName: ['publicDnsName'],
publicIp: ['publicIp'],
securityGroups: [{
groupId: ['groupId'],
groupName: ['groupName'],
}],
subnetId: ['subnetId'],
vpcId: ['vpcId'],
}],
outpostArn: ['outpostArn'],
platform: ['platform'],
productCodes: [{
productCodeId: ['productCodeId'],
productCodeType: ['productCodeType'],
}],
tags: [{
key: ['key'],
value: ['value'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string[] | availabilityZone property. |
| iam | Iam | iamInstanceProfile property. |
| image | string[] | imageDescription property. |
| image | string[] | imageId property. |
| instance | string[] | instanceId property. |
| instance | string[] | instanceState property. |
| instance | string[] | instanceType property. |
| launch | string[] | launchTime property. |
| network | Instance[] | networkInterfaces property. |
| outpost | string[] | outpostArn property. |
| platform? | string[] | platform property. |
| product | Instance[] | productCodes property. |
| tags? | Ecs[] | tags property. |
availabilityZone?
Type:
string[]
(optional, default: Do not filter on this field)
availabilityZone property.
Specify an array of string values to match this event if the actual value of availabilityZone is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
iamInstanceProfile?
Type:
Iam
(optional, default: Do not filter on this field)
iamInstanceProfile property.
Specify an array of string values to match this event if the actual value of iamInstanceProfile is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
imageDescription?
Type:
string[]
(optional, default: Do not filter on this field)
imageDescription property.
Specify an array of string values to match this event if the actual value of imageDescription is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
imageId?
Type:
string[]
(optional, default: Do not filter on this field)
imageId property.
Specify an array of string values to match this event if the actual value of imageId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
instanceId?
Type:
string[]
(optional, default: Do not filter on this field)
instanceId property.
Specify an array of string values to match this event if the actual value of instanceId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
instanceState?
Type:
string[]
(optional, default: Do not filter on this field)
instanceState property.
Specify an array of string values to match this event if the actual value of instanceState is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
instanceType?
Type:
string[]
(optional, default: Do not filter on this field)
instanceType property.
Specify an array of string values to match this event if the actual value of instanceType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
launchTime?
Type:
string[]
(optional, default: Do not filter on this field)
launchTime property.
Specify an array of string values to match this event if the actual value of launchTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
networkInterfaces?
Type:
Instance[]
(optional, default: Do not filter on this field)
networkInterfaces property.
Specify an array of string values to match this event if the actual value of networkInterfaces is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
outpostArn?
Type:
string[]
(optional, default: Do not filter on this field)
outpostArn property.
Specify an array of string values to match this event if the actual value of outpostArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
platform?
Type:
string[]
(optional, default: Do not filter on this field)
platform property.
Specify an array of string values to match this event if the actual value of platform is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
productCodes?
Type:
Instance[]
(optional, default: Do not filter on this field)
productCodes property.
Specify an array of string values to match this event if the actual value of productCodes is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
tags?
Type:
Ecs[]
(optional, default: Do not filter on this field)
tags property.
Specify an array of string values to match this event if the actual value of tags 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