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();
 
  • Method Details

    • getAvailabilityStatus

      @Stability(Stable) @Nullable default String getAvailabilityStatus()
      The availability status of the VPC connection.
    • getAwsAccountId

      @Stability(Stable) @Nullable default String getAwsAccountId()
      The AWS account ID of the account where you want to create a new VPC connection.
    • getDnsResolvers

      @Stability(Stable) @Nullable default List<String> getDnsResolvers()
      A list of IP addresses of DNS resolver endpoints for the VPC connection.
    • getName

      @Stability(Stable) @Nullable default String getName()
      The display name for the VPC connection.
    • getRoleArn

      @Stability(Stable) @Nullable default String getRoleArn()
      The ARN of the IAM role associated with the VPC connection.
    • getSecurityGroupIds

      @Stability(Stable) @Nullable default List<String> getSecurityGroupIds()
      The Amazon EC2 security group IDs associated with the VPC connection.
    • getSubnetIds

      @Stability(Stable) @Nullable default List<String> getSubnetIds()
      A list of subnet IDs for the VPC connection.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      A map of the key-value pairs for the resource tag or tags assigned to the VPC connection.
    • getVpcConnectionId

      @Stability(Stable) @Nullable default String 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

      @Stability(Stable) static CfnVPCConnectionProps.Builder builder()
      Returns:
      a CfnVPCConnectionProps.Builder of CfnVPCConnectionProps