Class: Aws::Transfer::Types::DescribedWebAppEndpointDetails

Inherits:
Struct
  • Object
show all
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.

Direct Known Subclasses

Unknown, Vpc

Defined Under Namespace

Classes: Unknown, Vpc

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3617
3618
3619
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3617

def unknown
  @unknown
end

#vpcTypes::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