Interface CfnService.NetworkConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.NetworkConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.NetworkConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Describes configuration settings related to network traffic of an AWS App Runner service.
Consists of embedded objects for each configurable network feature.
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.*; NetworkConfigurationProperty networkConfigurationProperty = NetworkConfigurationProperty.builder() .egressConfiguration(EgressConfigurationProperty.builder() .egressType("egressType") // the properties below are optional .vpcConnectorArn("vpcConnectorArn") .build()) .ingressConfiguration(IngressConfigurationProperty.builder() .isPubliclyAccessible(false) .build()) .ipAddressType("ipAddressType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnService.NetworkConfigurationProperty
static final class
An implementation forCfnService.NetworkConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Network configuration settings for outbound message traffic.default Object
Network configuration settings for inbound message traffic.default String
App Runner provides you with the option to choose between Internet Protocol version 4 (IPv4) and dual stack (IPv4 and IPv6) for your incoming public network configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEgressConfiguration
Network configuration settings for outbound message traffic.- See Also:
-
getIngressConfiguration
Network configuration settings for inbound message traffic.- See Also:
-
getIpAddressType
App Runner provides you with the option to choose between Internet Protocol version 4 (IPv4) and dual stack (IPv4 and IPv6) for your incoming public network configuration.This is an optional parameter. If you do not specify an
IpAddressType
, it defaults to select IPv4.Currently, App Runner supports dual stack for only Public endpoint. Only IPv4 is supported for Private endpoint. If you update a service that's using dual-stack Public endpoint to a Private endpoint, your App Runner service will default to support only IPv4 for Private endpoint and fail to receive traffic originating from IPv6 endpoint.
- See Also:
-
builder
-