Interface CfnService.IngressConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.IngressConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.IngressConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Network configuration settings for inbound network traffic.
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.*; IngressConfigurationProperty ingressConfigurationProperty = IngressConfigurationProperty.builder() .isPubliclyAccessible(false) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnService.IngressConfigurationProperty
static final class
An implementation forCfnService.IngressConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Specifies whether your App Runner service is publicly accessible.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIsPubliclyAccessible
Specifies whether your App Runner service is publicly accessible.To make the service publicly accessible set it to
True
. To make the service privately accessible, from only within an Amazon VPC set it toFalse
.- See Also:
-
builder
-