Class: Aws::Transfer::Types::WebAppEndpointDetails

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

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



7998
7999
8000
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7998

def unknown
  @unknown
end

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