interface NetworkInterfaceSet1Item
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Events.InstanceEvents.AWSAPICallViaCloudTrail.NetworkInterfaceSet1Item |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/events#InstanceEvents_AWSAPICallViaCloudTrail_NetworkInterfaceSet1Item |
Java | software.amazon.awscdk.mixins.preview.services.ec2.events.InstanceEvents.AWSAPICallViaCloudTrail.NetworkInterfaceSet1Item |
Python | aws_cdk.mixins_preview.aws_ec2.events.InstanceEvents.AWSAPICallViaCloudTrail.NetworkInterfaceSet1Item |
TypeScript | @aws-cdk/mixins-preview ยป aws_ec2 ยป events ยป InstanceEvents ยป AWSAPICallViaCloudTrail ยป NetworkInterfaceSet1Item |
Type definition for NetworkInterfaceSet_1Item.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as ec2_events } from '@aws-cdk/mixins-preview/aws-ec2';
const networkInterfaceSet1Item: ec2_events.InstanceEvents.AWSAPICallViaCloudTrail.NetworkInterfaceSet1Item = {
attachment: {
attachmentId: ['attachmentId'],
attachTime: ['attachTime'],
deleteOnTermination: ['deleteOnTermination'],
deviceIndex: ['deviceIndex'],
status: ['status'],
},
groupSet: {
items: [{
groupId: ['groupId'],
groupName: ['groupName'],
}],
},
interfaceType: ['interfaceType'],
ipv6AddressesSet: ['ipv6AddressesSet'],
macAddress: ['macAddress'],
networkInterfaceId: ['networkInterfaceId'],
ownerId: ['ownerId'],
privateIpAddress: ['privateIpAddress'],
privateIpAddressesSet: {
item: [{
primary: ['primary'],
privateIpAddress: ['privateIpAddress'],
}],
},
sourceDestCheck: ['sourceDestCheck'],
status: ['status'],
subnetId: ['subnetId'],
tagSet: ['tagSet'],
vpcId: ['vpcId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| attachment? | Attachment | attachment property. |
| group | Group | groupSet property. |
| interface | string[] | interfaceType property. |
| ipv6 | string[] | ipv6AddressesSet property. |
| mac | string[] | macAddress property. |
| network | string[] | networkInterfaceId property. |
| owner | string[] | ownerId property. |
| private | string[] | privateIpAddress property. |
| private | Private | privateIpAddressesSet property. |
| source | string[] | sourceDestCheck property. |
| status? | string[] | status property. |
| subnet | string[] | subnetId property. |
| tag | string[] | tagSet property. |
| vpc | string[] | vpcId property. |
attachment?
Type:
Attachment
(optional, default: Do not filter on this field)
attachment property.
Specify an array of string values to match this event if the actual value of attachment is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
groupSet?
Type:
Group
(optional, default: Do not filter on this field)
groupSet property.
Specify an array of string values to match this event if the actual value of groupSet is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
interfaceType?
Type:
string[]
(optional, default: Do not filter on this field)
interfaceType property.
Specify an array of string values to match this event if the actual value of interfaceType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
ipv6AddressesSet?
Type:
string[]
(optional, default: Do not filter on this field)
ipv6AddressesSet property.
Specify an array of string values to match this event if the actual value of ipv6AddressesSet is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
macAddress?
Type:
string[]
(optional, default: Do not filter on this field)
macAddress property.
Specify an array of string values to match this event if the actual value of macAddress 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.
ownerId?
Type:
string[]
(optional, default: Do not filter on this field)
ownerId property.
Specify an array of string values to match this event if the actual value of ownerId 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.
privateIpAddressesSet?
Type:
Private
(optional, default: Do not filter on this field)
privateIpAddressesSet property.
Specify an array of string values to match this event if the actual value of privateIpAddressesSet is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
sourceDestCheck?
Type:
string[]
(optional, default: Do not filter on this field)
sourceDestCheck property.
Specify an array of string values to match this event if the actual value of sourceDestCheck is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
status?
Type:
string[]
(optional, default: Do not filter on this field)
status property.
Specify an array of string values to match this event if the actual value of status 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.
tagSet?
Type:
string[]
(optional, default: Do not filter on this field)
tagSet property.
Specify an array of string values to match this event if the actual value of tagSet 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