Interface VpcConnectorAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
VpcConnectorAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:11.380Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forVpcConnectorAttributes
static final class
An 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.Builder
ofVpcConnectorAttributes
-