@Stability(value=Stable)
public static interface CfnService.EgressConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
EgressConfigurationProperty egressConfigurationProperty = EgressConfigurationProperty.builder()
.egressType("egressType")
// the properties below are optional
.vpcConnectorArn("vpcConnectorArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnService.EgressConfigurationProperty.Builder
A builder for
CfnService.EgressConfigurationProperty |
static class |
CfnService.EgressConfigurationProperty.Jsii$Proxy
An implementation for
CfnService.EgressConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnService.EgressConfigurationProperty.Builder |
builder() |
String |
getEgressType()
The type of egress configuration.
|
default String |
getVpcConnectorArn()
The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service.
|
@Stability(value=Stable) @NotNull String getEgressType()
Set to DEFAULT for access to resources hosted on public networks.
Set to VPC to associate your service to a custom VPC specified by VpcConnectorArn .
@Stability(value=Stable) @Nullable default String getVpcConnectorArn()
Only valid when EgressType = VPC .
@Stability(value=Stable) static CfnService.EgressConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.