interface NetworkInterfaceProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RedshiftServerless.CfnWorkgroup.NetworkInterfaceProperty |
Java | software.amazon.awscdk.services.redshiftserverless.CfnWorkgroup.NetworkInterfaceProperty |
Python | aws_cdk.aws_redshiftserverless.CfnWorkgroup.NetworkInterfaceProperty |
TypeScript | @aws-cdk/aws-redshiftserverless » CfnWorkgroup » NetworkInterfaceProperty |
Contains information about a network interface in an Amazon Redshift Serverless managed VPC endpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as redshiftserverless from '@aws-cdk/aws-redshiftserverless';
const networkInterfaceProperty: redshiftserverless.CfnWorkgroup.NetworkInterfaceProperty = {
availabilityZone: 'availabilityZone',
networkInterfaceId: 'networkInterfaceId',
privateIpAddress: 'privateIpAddress',
subnetId: 'subnetId',
};
Properties
Name | Type | Description |
---|---|---|
availability | string | The availability Zone. |
network | string | The unique identifier of the network interface. |
private | string | The IPv4 address of the network interface within the subnet. |
subnet | string | The unique identifier of the subnet. |
availabilityZone?
Type:
string
(optional)
The availability Zone.
networkInterfaceId?
Type:
string
(optional)
The unique identifier of the network interface.
privateIpAddress?
Type:
string
(optional)
The IPv4 address of the network interface within the subnet.
subnetId?
Type:
string
(optional)
The unique identifier of the subnet.