Interface CfnVPCConnectionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVPCConnectionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:34.884Z")
@Stability(Stable)
public interface CfnVPCConnectionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnVPCConnection
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.quicksight.*; CfnVPCConnectionProps cfnVPCConnectionProps = CfnVPCConnectionProps.builder() .availabilityStatus("availabilityStatus") .awsAccountId("awsAccountId") .dnsResolvers(List.of("dnsResolvers")) .name("name") .roleArn("roleArn") .securityGroupIds(List.of("securityGroupIds")) .subnetIds(List.of("subnetIds")) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .vpcConnectionId("vpcConnectionId") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVPCConnectionProps
static final class
An implementation forCfnVPCConnectionProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The availability status of the VPC connection.default String
The AWS account ID of the account where you want to create a new VPC connection.A list of IP addresses of DNS resolver endpoints for the VPC connection.default String
getName()
The display name for the VPC connection.default String
The ARN of the IAM role associated with the VPC connection.The Amazon EC2 security group IDs associated with the VPC connection.A list of subnet IDs for the VPC connection.getTags()
A map of the key-value pairs for the resource tag or tags assigned to the VPC connection.default String
The ID of the VPC connection that you're creating.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAvailabilityStatus
The availability status of the VPC connection. -
getAwsAccountId
The AWS account ID of the account where you want to create a new VPC connection. -
getDnsResolvers
A list of IP addresses of DNS resolver endpoints for the VPC connection. -
getName
The display name for the VPC connection. -
getRoleArn
The ARN of the IAM role associated with the VPC connection. -
getSecurityGroupIds
The Amazon EC2 security group IDs associated with the VPC connection. -
getSubnetIds
A list of subnet IDs for the VPC connection. -
getTags
A map of the key-value pairs for the resource tag or tags assigned to the VPC connection. -
getVpcConnectionId
The ID of the VPC connection that you're creating.This ID is a unique identifier for each AWS Region in an AWS account.
-
builder
- Returns:
- a
CfnVPCConnectionProps.Builder
ofCfnVPCConnectionProps
-