interface NetworkInterfaceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Redshift.Mixins.CfnEndpointAccessPropsMixin.NetworkInterfaceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshift/mixins#CfnEndpointAccessPropsMixin_NetworkInterfaceProperty |
Java | software.amazon.awscdk.mixins.preview.services.redshift.mixins.CfnEndpointAccessPropsMixin.NetworkInterfaceProperty |
Python | aws_cdk.mixins_preview.aws_redshift.mixins.CfnEndpointAccessPropsMixin.NetworkInterfaceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_redshift » mixins » CfnEndpointAccessPropsMixin » NetworkInterfaceProperty |
Describes 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 redshift_mixins } from '@aws-cdk/mixins-preview/aws-redshift';
const networkInterfaceProperty: redshift_mixins.CfnEndpointAccessPropsMixin.NetworkInterfaceProperty = {
availabilityZone: 'availabilityZone',
networkInterfaceId: 'networkInterfaceId',
privateIpAddress: 'privateIpAddress',
subnetId: 'subnetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string | The Availability Zone. |
| network | string | The network interface identifier. |
| private | string | The IPv4 address of the network interface within the subnet. |
| subnet | string | The subnet identifier. |
availabilityZone?
Type:
string
(optional)
The Availability Zone.
networkInterfaceId?
Type:
string
(optional)
The network interface identifier.
privateIpAddress?
Type:
string
(optional)
The IPv4 address of the network interface within the subnet.
subnetId?
Type:
string
(optional)
The subnet identifier.

.NET
Go
Java
Python
TypeScript