Class: Aws::Transfer::Types::DescribedWebAppEndpointDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::DescribedWebAppEndpointDetails
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Note:
DescribedWebAppEndpointDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DescribedWebAppEndpointDetails corresponding to the set member.
Contains the endpoint configuration details for a web app, including VPC configuration 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::DescribedWebAppVpcConfig
The VPC configuration details when the web app endpoint is hosted within a VPC.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
3671 3672 3673 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3671 def unknown @unknown end |
#vpc ⇒ Types::DescribedWebAppVpcConfig
The VPC configuration details when the web app endpoint is hosted within a VPC. This includes the VPC ID, subnet IDs, and VPC endpoint ID.
3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3671 class DescribedWebAppEndpointDetails < Struct.new( :vpc, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Vpc < DescribedWebAppEndpointDetails; end class Unknown < DescribedWebAppEndpointDetails; end end |