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



7937
7938
7939
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7937

def unknown
  @unknown
end

#vpcTypes::WebAppVpcConfig

The VPC configuration for hosting the web app endpoint within a VPC.



7937
7938
7939
7940
7941
7942
7943
7944
7945
7946
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7937

class WebAppEndpointDetails < Struct.new(
  :vpc,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Vpc < WebAppEndpointDetails; end
  class Unknown < WebAppEndpointDetails; end
end