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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.IngressConfigurationPropertystatic final classAn 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.Returns union: either
BooleanorIResolvable- See Also:
-
builder
-