Class: Aws::Transfer::Types::UpdateWebAppEndpointDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::UpdateWebAppEndpointDetails
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Note:
UpdateWebAppEndpointDetails is a union - when making an API calls you must set exactly one of the members.
Contains the endpoint configuration details for updating a web app, including VPC settings for endpoints hosted within a VPC.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#vpc ⇒ Types::UpdateWebAppVpcConfig
The VPC configuration details for updating a web app endpoint hosted within a VPC.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
7785 7786 7787 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7785 def unknown @unknown end |
#vpc ⇒ Types::UpdateWebAppVpcConfig
The VPC configuration details for updating a web app endpoint hosted within a VPC. This includes the subnet IDs for endpoint deployment.
7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7785 class UpdateWebAppEndpointDetails < Struct.new( :vpc, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Vpc < UpdateWebAppEndpointDetails; end class Unknown < UpdateWebAppEndpointDetails; end end |