Class: Aws::AppRunner::Types::NetworkConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#egress_configurationTypes::EgressConfiguration

Network configuration settings for outbound message traffic.



2188
2189
2190
2191
2192
2193
2194
# File '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_configurationTypes::IngressConfiguration

Network configuration settings for inbound message traffic.



2188
2189
2190
2191
2192
2193
2194
# File '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_typeString

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.

<note markdown=“1”> Currently, App Runner supports dual stack for only Public endpoint. Only IPv4 is supported for Private endpoint. If you update a service that’s using dual-stack Public endpoint to a Private endpoint, your App Runner service will default to support only IPv4 for Private endpoint and fail to receive traffic originating from IPv6 endpoint.

</note>

Returns:

  • (String)


2188
2189
2190
2191
2192
2193
2194
# File 'lib/aws-sdk-apprunner/types.rb', line 2188

class NetworkConfiguration < Struct.new(
  :egress_configuration,
  :ingress_configuration,
  :ip_address_type)
  SENSITIVE = []
  include Aws::Structure
end