Interface VpcConnectorAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
VpcConnectorAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.637Z") @Stability(Experimental) public interface VpcConnectorAttributes extends software.amazon.jsii.JsiiSerializable
(experimental) Attributes for the App Runner VPC Connector.

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.apprunner.alpha.*;
 import software.amazon.awscdk.services.ec2.*;
 SecurityGroup securityGroup;
 VpcConnectorAttributes vpcConnectorAttributes = VpcConnectorAttributes.builder()
         .securityGroups(List.of(securityGroup))
         .vpcConnectorArn("vpcConnectorArn")
         .vpcConnectorName("vpcConnectorName")
         .vpcConnectorRevision(123)
         .build();
 
  • Method Details

    • getSecurityGroups

      @Stability(Experimental) @NotNull List<ISecurityGroup> getSecurityGroups()
      (experimental) The security groups associated with the VPC connector.
    • getVpcConnectorArn

      @Stability(Experimental) @NotNull String getVpcConnectorArn()
      (experimental) The ARN of the VPC connector.
    • getVpcConnectorName

      @Stability(Experimental) @NotNull String getVpcConnectorName()
      (experimental) The name of the VPC connector.
    • getVpcConnectorRevision

      @Stability(Experimental) @NotNull Number getVpcConnectorRevision()
      (experimental) The revision of the VPC connector.
    • builder

      @Stability(Experimental) static VpcConnectorAttributes.Builder builder()
      Returns:
      a VpcConnectorAttributes.Builder of VpcConnectorAttributes