Class: Aws::AppRunner::Types::NetworkConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::NetworkConfiguration
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Describes configuration settings related to network traffic of an App Runner service. Consists of embedded objects for each configurable network feature.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#egress_configuration ⇒ Types::EgressConfiguration
Network configuration settings for outbound message traffic.
-
#ingress_configuration ⇒ Types::IngressConfiguration
Network configuration settings for inbound message traffic.
-
#ip_address_type ⇒ String
App Runner provides you with the option to choose between IPv4 and dual stack (IPv4 and IPv6).
Instance Attribute Details
#egress_configuration ⇒ Types::EgressConfiguration
Network configuration settings for outbound message traffic.
2179 2180 2181 2182 2183 2184 2185 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2179 class NetworkConfiguration < Struct.new( :egress_configuration, :ingress_configuration, :ip_address_type) SENSITIVE = [] include Aws::Structure end |
#ingress_configuration ⇒ Types::IngressConfiguration
Network configuration settings for inbound message traffic.
2179 2180 2181 2182 2183 2184 2185 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2179 class NetworkConfiguration < Struct.new( :egress_configuration, :ingress_configuration, :ip_address_type) SENSITIVE = [] include Aws::Structure end |
#ip_address_type ⇒ String
App Runner provides you with the option to choose between IPv4 and
dual stack (IPv4 and IPv6). This is an optional parameter. If you
do not specify an IpAddressType, it defaults to select IPv4.
2179 2180 2181 2182 2183 2184 2185 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2179 class NetworkConfiguration < Struct.new( :egress_configuration, :ingress_configuration, :ip_address_type) SENSITIVE = [] include Aws::Structure end |