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



7785
7786
7787
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7785

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.



7785
7786
7787
7788
7789
7790
7791
7792
7793
7794
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 7785

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

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