interface NetworkInterfaceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Redshift.CfnEndpointAccess.NetworkInterfaceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsredshift#CfnEndpointAccess_NetworkInterfaceProperty |
Java | software.amazon.awscdk.services.redshift.CfnEndpointAccess.NetworkInterfaceProperty |
Python | aws_cdk.aws_redshift.CfnEndpointAccess.NetworkInterfaceProperty |
TypeScript | aws-cdk-lib » aws_redshift » CfnEndpointAccess » 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 { aws_redshift as redshift } from 'aws-cdk-lib';
const networkInterfaceProperty: redshift.CfnEndpointAccess.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