Class: Aws::EntityResolution::Types::ProviderEndpointConfiguration

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

Overview

Note:

ProviderEndpointConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProviderEndpointConfiguration corresponding to the set member.

The required configuration fields to use with the provider service.

Direct Known Subclasses

MarketplaceConfiguration, Unknown

Defined Under Namespace

Classes: MarketplaceConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#marketplace_configurationTypes::ProviderMarketplaceConfiguration

The identifiers of the provider service, from Data Exchange.



2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 2190

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

  class MarketplaceConfiguration < ProviderEndpointConfiguration; end
  class Unknown < ProviderEndpointConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2190
2191
2192
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 2190

def unknown
  @unknown
end