interface InstanceDetailsItem
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GuardDuty.Events.DetectorEvents.GuardDutyFinding.InstanceDetailsItem |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsguardduty/events#DetectorEvents_GuardDutyFinding_InstanceDetailsItem |
Java | software.amazon.awscdk.mixins.preview.services.guardduty.events.DetectorEvents.GuardDutyFinding.InstanceDetailsItem |
Python | aws_cdk.mixins_preview.aws_guardduty.events.DetectorEvents.GuardDutyFinding.InstanceDetailsItem |
TypeScript | @aws-cdk/mixins-preview ยป aws_guardduty ยป events ยป DetectorEvents ยป GuardDutyFinding ยป InstanceDetailsItem |
Type definition for InstanceDetailsItem.
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 instanceDetailsItem: guardduty_events.DetectorEvents.GuardDutyFinding.InstanceDetailsItem = {
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'],
};
Properties
| Name | Type | Description |
|---|---|---|
| ipv6 | any[] | ipv6Addresses property. |
| network | string[] | networkInterfaceId property. |
| private | string[] | privateDnsName property. |
| private | string[] | privateIpAddress property. |
| private | Instance[] | privateIpAddresses property. |
| public | string[] | publicDnsName property. |
| public | string[] | publicIp property. |
| security | Instance[] | securityGroups property. |
| subnet | string[] | subnetId property. |
| vpc | string[] | vpcId property. |
ipv6Addresses?
Type:
any[]
(optional, default: Do not filter on this field)
ipv6Addresses property.
Specify an array of string values to match this event if the actual value of ipv6Addresses is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
networkInterfaceId?
Type:
string[]
(optional, default: Do not filter on this field)
networkInterfaceId property.
Specify an array of string values to match this event if the actual value of networkInterfaceId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
privateDnsName?
Type:
string[]
(optional, default: Do not filter on this field)
privateDnsName property.
Specify an array of string values to match this event if the actual value of privateDnsName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
privateIpAddress?
Type:
string[]
(optional, default: Do not filter on this field)
privateIpAddress property.
Specify an array of string values to match this event if the actual value of privateIpAddress is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
privateIpAddresses?
Type:
Instance[]
(optional, default: Do not filter on this field)
privateIpAddresses property.
Specify an array of string values to match this event if the actual value of privateIpAddresses is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
publicDnsName?
Type:
string[]
(optional, default: Do not filter on this field)
publicDnsName property.
Specify an array of string values to match this event if the actual value of publicDnsName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
publicIp?
Type:
string[]
(optional, default: Do not filter on this field)
publicIp property.
Specify an array of string values to match this event if the actual value of publicIp is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
securityGroups?
Type:
Instance[]
(optional, default: Do not filter on this field)
securityGroups property.
Specify an array of string values to match this event if the actual value of securityGroups is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
subnetId?
Type:
string[]
(optional, default: Do not filter on this field)
subnetId property.
Specify an array of string values to match this event if the actual value of subnetId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
vpcId?
Type:
string[]
(optional, default: Do not filter on this field)
vpcId property.
Specify an array of string values to match this event if the actual value of vpcId 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