Class: Aws::Transfer::Types::UpdateWebAppEndpointDetails

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb

Overview

Note:

UpdateWebAppEndpointDetails is a union - when making an API calls you must set exactly one of the members.

Contains the endpoint configuration details for updating a web app, including VPC settings for endpoints hosted within a 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



7881
7882
7883
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7881

def unknown
  @unknown
end

#vpcTypes::UpdateWebAppVpcConfig

The VPC configuration details for updating a web app endpoint hosted within a VPC. This includes the subnet IDs for endpoint deployment.



7881
7882
7883
7884
7885
7886
7887
7888
7889
7890
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7881

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

  class Vpc < UpdateWebAppEndpointDetails; end
  class Unknown < UpdateWebAppEndpointDetails; end
end