interface CfnVPCConnectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnVPCConnectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnVPCConnectionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnVPCConnectionMixinProps |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnVPCConnectionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnVPCConnectionMixinProps |
Properties for CfnVPCConnectionPropsMixin.
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 cfnVPCConnectionMixinProps: quicksight_mixins.CfnVPCConnectionMixinProps = {
availabilityStatus: 'availabilityStatus',
awsAccountId: 'awsAccountId',
dnsResolvers: ['dnsResolvers'],
name: 'name',
roleArn: 'roleArn',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tags: [{
key: 'key',
value: 'value',
}],
vpcConnectionId: 'vpcConnectionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string | The availability status of the VPC connection. |
| aws | string | The AWS account ID of the account where you want to create a new VPC connection. |
| dns | string[] | A list of IP addresses of DNS resolver endpoints for the VPC connection. |
| name? | string | The display name for the VPC connection. |
| role | string | The ARN of the IAM role associated with the VPC connection. |
| security | string[] | The Amazon EC2 security group IDs associated with the VPC connection. |
| subnet | string[] | A list of subnet IDs for the VPC connection. |
| tags? | Cfn[] | A map of the key-value pairs for the resource tag or tags assigned to the VPC connection. |
| vpc | string | The ID of the VPC connection that you're creating. |
availabilityStatus?
Type:
string
(optional)
The availability status of the VPC connection.
awsAccountId?
Type:
string
(optional)
The AWS account ID of the account where you want to create a new VPC connection.
dnsResolvers?
Type:
string[]
(optional)
A list of IP addresses of DNS resolver endpoints for the VPC connection.
name?
Type:
string
(optional)
The display name for the VPC connection.
roleArn?
Type:
string
(optional)
The ARN of the IAM role associated with the VPC connection.
securityGroupIds?
Type:
string[]
(optional)
The Amazon EC2 security group IDs associated with the VPC connection.
subnetIds?
Type:
string[]
(optional)
A list of subnet IDs for the VPC connection.
tags?
Type:
Cfn[]
(optional)
A map of the key-value pairs for the resource tag or tags assigned to the VPC connection.
vpcConnectionId?
Type:
string
(optional)
The ID of the VPC connection that you're creating.
This ID is a unique identifier for each AWS Region in an AWS account.

.NET
Go
Java
Python
TypeScript