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.

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



7846
7847
7848
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7846

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.



7846
7847
7848
7849
7850
7851
7852
7853
7854
7855
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7846

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

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