Interface CfnServicePropsMixin.EgressConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServicePropsMixin.EgressConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnServicePropsMixin
@Stability(Stable)
public static interface CfnServicePropsMixin.EgressConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Describes configuration settings related to outbound network traffic of an AWS App Runner service.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.apprunner.*;
EgressConfigurationProperty egressConfigurationProperty = EgressConfigurationProperty.builder()
.egressType("egressType")
.vpcConnectorArn("vpcConnectorArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServicePropsMixin.EgressConfigurationPropertystatic final classAn implementation forCfnServicePropsMixin.EgressConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEgressType
The type of egress configuration.Set to
DEFAULTfor access to resources hosted on public networks.Set to
VPCto associate your service to a custom VPC specified byVpcConnectorArn.- See Also:
-
getVpcConnectorArn
The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service.Only valid when
EgressType = VPC.Returns union: either
StringorIVpcConnectorRef- See Also:
-
builder
-