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
3617 3618 3619 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3617 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.
3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3617 class DescribedWebAppEndpointDetails < Struct.new( :vpc, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Vpc < DescribedWebAppEndpointDetails; end class Unknown < DescribedWebAppEndpointDetails; end end |