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())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.NetworkConfigurationPropertystatic final classAn implementation forCfnService.NetworkConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEgressConfiguration
Network configuration settings for outbound message traffic. -
getIngressConfiguration
Network configuration settings for inbound message traffic. -
builder
-