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



3671
3672
3673
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3671

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.



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