Interface VpcIngressConnectionAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
VpcIngressConnectionAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-12T12:32:13.302Z")
@Stability(Experimental)
public interface VpcIngressConnectionAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) Attributes for the App Runner VPC Ingress Connection.
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.*; VpcIngressConnectionAttributes vpcIngressConnectionAttributes = VpcIngressConnectionAttributes.builder() .domainName("domainName") .status("status") .vpcIngressConnectionArn("vpcIngressConnectionArn") .vpcIngressConnectionName("vpcIngressConnectionName") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forVpcIngressConnectionAttributes
static final class
An implementation forVpcIngressConnectionAttributes
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
(experimental) The domain name associated with the VPC Ingress Connection resource.(experimental) The current status of the VPC Ingress Connection.(experimental) The Amazon Resource Name (ARN) of the VPC Ingress Connection.(experimental) The name of the VPC Ingress Connection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainName
(experimental) The domain name associated with the VPC Ingress Connection resource. -
getStatus
(experimental) The current status of the VPC Ingress Connection. -
getVpcIngressConnectionArn
(experimental) The Amazon Resource Name (ARN) of the VPC Ingress Connection. -
getVpcIngressConnectionName
(experimental) The name of the VPC Ingress Connection. -
builder
-