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.



2179
2180
2181
2182
2183
2184
2185
# File '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_configurationTypes::IngressConfiguration

Network configuration settings for inbound message traffic.



2179
2180
2181
2182
2183
2184
2185
# File '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_typeString

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.

Returns:

  • (String)


2179
2180
2181
2182
2183
2184
2185
# File 'lib/aws-sdk-apprunner/types.rb', line 2179

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