Class: Aws::Transfer::Types::UpdateWebAppVpcConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::UpdateWebAppVpcConfig
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Contains the VPC configuration settings for updating a web app endpoint, including the subnet IDs where the endpoint should be deployed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ip_address_type ⇒ String
The IP address type for the web app's VPC endpoint.
-
#subnet_ids ⇒ Array<String>
The list of subnet IDs within the VPC where the web app endpoint should be deployed during the update operation.
Instance Attribute Details
#ip_address_type ⇒ String
The IP address type for the web app's VPC endpoint. This determines whether the endpoint is accessible over IPv4 only, or over both IPv4 and IPv6.
7995 7996 7997 7998 7999 8000 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7995 class UpdateWebAppVpcConfig < Struct.new( :subnet_ids, :ip_address_type) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
The list of subnet IDs within the VPC where the web app endpoint should be deployed during the update operation.
7995 7996 7997 7998 7999 8000 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7995 class UpdateWebAppVpcConfig < Struct.new( :subnet_ids, :ip_address_type) SENSITIVE = [] include Aws::Structure end |