Class: Aws::Transfer::Types::DescribedWebAppVpcConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::DescribedWebAppVpcConfig
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Contains the VPC configuration details for a web app endpoint, including the VPC identifier, subnet IDs, and VPC endpoint ID used for hosting the endpoint.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#subnet_ids ⇒ Array<String>
The list of subnet IDs within the VPC where the web app endpoint is deployed.
-
#vpc_endpoint_id ⇒ String
The identifier of the VPC endpoint created for the web app.
-
#vpc_id ⇒ String
The identifier of the VPC where the web app endpoint is hosted.
Instance Attribute Details
#subnet_ids ⇒ Array<String>
The list of subnet IDs within the VPC where the web app endpoint is deployed. These subnets must be in the same VPC and provide network connectivity for the endpoint.
3723 3724 3725 3726 3727 3728 3729 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3723 class DescribedWebAppVpcConfig < Struct.new( :subnet_ids, :vpc_id, :vpc_endpoint_id) SENSITIVE = [] include Aws::Structure end |
#vpc_endpoint_id ⇒ String
The identifier of the VPC endpoint created for the web app.
3723 3724 3725 3726 3727 3728 3729 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3723 class DescribedWebAppVpcConfig < Struct.new( :subnet_ids, :vpc_id, :vpc_endpoint_id) SENSITIVE = [] include Aws::Structure end |
#vpc_id ⇒ String
The identifier of the VPC where the web app endpoint is hosted.
3723 3724 3725 3726 3727 3728 3729 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3723 class DescribedWebAppVpcConfig < Struct.new( :subnet_ids, :vpc_id, :vpc_endpoint_id) SENSITIVE = [] include Aws::Structure end |