Interface VpcConnectorAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
VpcConnectorAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:41:04.404Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forVpcConnectorAttributesstatic final classAn implementation forVpcConnectorAttributes -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) The security groups associated with the VPC connector.(experimental) The ARN of the VPC connector.(experimental) The name of the VPC connector.(experimental) The revision of the VPC connector.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSecurityGroups
(experimental) The security groups associated with the VPC connector. -
getVpcConnectorArn
(experimental) The ARN of the VPC connector. -
getVpcConnectorName
(experimental) The name of the VPC connector. -
getVpcConnectorRevision
(experimental) The revision of the VPC connector. -
builder
- Returns:
- a
VpcConnectorAttributes.BuilderofVpcConnectorAttributes
-