Class: Aws::AppRunner::Types::EgressConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::EgressConfiguration
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Describes configuration settings related to outbound network traffic of an App Runner service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#egress_type ⇒ String
The type of egress configuration.
-
#vpc_connector_arn ⇒ String
The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service.
Instance Attribute Details
#egress_type ⇒ String
The type of egress configuration.
Set to DEFAULT
for access to resources hosted on public networks.
Set to VPC
to associate your service to a custom VPC specified by
VpcConnectorArn
.
1390 1391 1392 1393 1394 1395 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 1390 class EgressConfiguration < Struct.new( :egress_type, :vpc_connector_arn) SENSITIVE = [] include Aws::Structure end |
#vpc_connector_arn ⇒ String
The Amazon Resource Name (ARN) of the App Runner VPC connector that
you want to associate with your App Runner service. Only valid when
EgressType = VPC
.
1390 1391 1392 1393 1394 1395 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 1390 class EgressConfiguration < Struct.new( :egress_type, :vpc_connector_arn) SENSITIVE = [] include Aws::Structure end |