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 Internet Protocol version 4 (IPv4) and dual stack (IPv4 and IPv6) for your incoming public network configuration.
Instance Attribute Details
#egress_configuration ⇒ Types::EgressConfiguration
Network configuration settings for outbound message traffic.
2188 2189 2190 2191 2192 2193 2194 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2188 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.
2188 2189 2190 2191 2192 2193 2194 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2188 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 Internet
Protocol version 4 (IPv4) and dual stack (IPv4 and IPv6) for your
incoming public network configuration. This is an optional
parameter. If you do not specify an IpAddressType
, it defaults to
select IPv4.
2188 2189 2190 2191 2192 2193 2194 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2188 class NetworkConfiguration < Struct.new( :egress_configuration, :ingress_configuration, :ip_address_type) SENSITIVE = [] include Aws::Structure end |