interface NetworkInterfaceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnVPCConnectionPropsMixin.NetworkInterfaceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnVPCConnectionPropsMixin_NetworkInterfaceProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnVPCConnectionPropsMixin.NetworkInterfaceProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnVPCConnectionPropsMixin.NetworkInterfaceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnVPCConnectionPropsMixin » NetworkInterfaceProperty |
The structure that contains information about a network interface.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const networkInterfaceProperty: quicksight_mixins.CfnVPCConnectionPropsMixin.NetworkInterfaceProperty = {
availabilityZone: 'availabilityZone',
errorMessage: 'errorMessage',
networkInterfaceId: 'networkInterfaceId',
status: 'status',
subnetId: 'subnetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string | The availability zone that the network interface resides in. |
| error | string | An error message. |
| network | string | The network interface ID. |
| status? | string | The status of the network interface. |
| subnet | string | The subnet ID associated with the network interface. |
availabilityZone?
Type:
string
(optional)
The availability zone that the network interface resides in.
errorMessage?
Type:
string
(optional)
An error message.
networkInterfaceId?
Type:
string
(optional)
The network interface ID.
status?
Type:
string
(optional)
The status of the network interface.
subnetId?
Type:
string
(optional)
The subnet ID associated with the network interface.

.NET
Go
Java
Python
TypeScript