interface NetworkInterfaceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RedshiftServerless.Mixins.CfnWorkgroupPropsMixin.NetworkInterfaceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshiftserverless/mixins#CfnWorkgroupPropsMixin_NetworkInterfaceProperty |
Java | software.amazon.awscdk.mixins.preview.services.redshiftserverless.mixins.CfnWorkgroupPropsMixin.NetworkInterfaceProperty |
Python | aws_cdk.mixins_preview.aws_redshiftserverless.mixins.CfnWorkgroupPropsMixin.NetworkInterfaceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_redshiftserverless » mixins » CfnWorkgroupPropsMixin » 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 { mixins as redshiftserverless_mixins } from '@aws-cdk/mixins-preview/aws-redshiftserverless';
const networkInterfaceProperty: redshiftserverless_mixins.CfnWorkgroupPropsMixin.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.

.NET
Go
Java
Python
TypeScript