Class: Aws::Transfer::Types::WebAppVpcConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::WebAppVpcConfig
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Contains the VPC configuration settings for hosting a web app endpoint, including the VPC ID, subnet IDs, and security group IDs for access control.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#security_group_ids ⇒ Array<String>
The list of security group IDs that control access to the web app endpoint.
-
#subnet_ids ⇒ Array<String>
The list of subnet IDs within the VPC where the web app endpoint will be deployed.
-
#vpc_id ⇒ String
The identifier of the VPC where the web app endpoint will be hosted.
Instance Attribute Details
#security_group_ids ⇒ Array<String>
The list of security group IDs that control access to the web app endpoint. These security groups determine which sources can access the endpoint based on IP addresses and port configurations.
8022 8023 8024 8025 8026 8027 8028 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 8022 class WebAppVpcConfig < Struct.new( :subnet_ids, :vpc_id, :security_group_ids) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
The list of subnet IDs within the VPC where the web app endpoint will be deployed. These subnets must be in the same VPC specified in the VpcId parameter.
8022 8023 8024 8025 8026 8027 8028 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 8022 class WebAppVpcConfig < Struct.new( :subnet_ids, :vpc_id, :security_group_ids) SENSITIVE = [] include Aws::Structure end |
#vpc_id ⇒ String
The identifier of the VPC where the web app endpoint will be hosted.
8022 8023 8024 8025 8026 8027 8028 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 8022 class WebAppVpcConfig < Struct.new( :subnet_ids, :vpc_id, :security_group_ids) SENSITIVE = [] include Aws::Structure end |