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
7846 7847 7848 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7846 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.
7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7846 class UpdateWebAppEndpointDetails < Struct.new( :vpc, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Vpc < UpdateWebAppEndpointDetails; end class Unknown < UpdateWebAppEndpointDetails; end end |