Class: Aws::AppRunner::Types::IngressConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::IngressConfiguration
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Network configuration settings for inbound network traffic.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#is_publicly_accessible ⇒ Boolean
Specifies whether your App Runner service is publicly accessible.
Instance Attribute Details
#is_publicly_accessible ⇒ Boolean
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
to False
.
1567 1568 1569 1570 1571 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 1567 class IngressConfiguration < Struct.new( :is_publicly_accessible) SENSITIVE = [] include Aws::Structure end |