Interface CfnVPCConnectionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVPCConnectionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:08.056Z")
@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();
- See Also:
-
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.- See Also:
-
getAwsAccountId
The AWS account ID of the account where you want to create a new VPC connection.- See Also:
-
getDnsResolvers
A list of IP addresses of DNS resolver endpoints for the VPC connection.- See Also:
-
getName
The display name for the VPC connection.- See Also:
-
getRoleArn
The ARN of the IAM role associated with the VPC connection.- See Also:
-
getSecurityGroupIds
The Amazon EC2 security group IDs associated with the VPC connection.- See Also:
-
getSubnetIds
A list of subnet IDs for the VPC connection.- See Also:
-
getTags
A map of the key-value pairs for the resource tag or tags assigned to the VPC connection.- See Also:
-
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.
- See Also:
-
builder
- Returns:
- a
CfnVPCConnectionProps.Builder
ofCfnVPCConnectionProps
-