Class: Aws::Transfer::Types::WebAppEndpointDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::WebAppEndpointDetails
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Note:
WebAppEndpointDetails is a union - when making an API calls you must set exactly one of the members.
Contains the endpoint configuration for a web app, including VPC settings when the endpoint is 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::WebAppVpcConfig
The VPC configuration for hosting the web app endpoint within a VPC.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
7937 7938 7939 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7937 def unknown @unknown end |
#vpc ⇒ Types::WebAppVpcConfig
The VPC configuration for hosting the web app endpoint within a VPC.
7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7937 class WebAppEndpointDetails < Struct.new( :vpc, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Vpc < WebAppEndpointDetails; end class Unknown < WebAppEndpointDetails; end end |