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
7998 7999 8000 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7998 def unknown @unknown end |
#vpc ⇒ Types::WebAppVpcConfig
The VPC configuration for hosting the web app endpoint within a VPC.
7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7998 class WebAppEndpointDetails < Struct.new( :vpc, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Vpc < WebAppEndpointDetails; end class Unknown < WebAppEndpointDetails; end end |