Class: Aws::IoTTwinMaker::Types::IotTwinMakerSourceConfigurationFilter

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

Overview

Note:

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

Note:

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

The metadata transfer job AWS IoT TwinMaker source configuration filter.

Direct Known Subclasses

FilterByComponentType, FilterByEntity, Unknown

Defined Under Namespace

Classes: FilterByComponentType, FilterByEntity, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#filter_by_component_typeTypes::FilterByComponentType

Filter by component type.



2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 2243

class IotTwinMakerSourceConfigurationFilter < Struct.new(
  :filter_by_component_type,
  :filter_by_entity,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class FilterByComponentType < IotTwinMakerSourceConfigurationFilter; end
  class FilterByEntity < IotTwinMakerSourceConfigurationFilter; end
  class Unknown < IotTwinMakerSourceConfigurationFilter; end
end

#filter_by_entityTypes::FilterByEntity

Filter by entity.



2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 2243

class IotTwinMakerSourceConfigurationFilter < Struct.new(
  :filter_by_component_type,
  :filter_by_entity,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class FilterByComponentType < IotTwinMakerSourceConfigurationFilter; end
  class FilterByEntity < IotTwinMakerSourceConfigurationFilter; end
  class Unknown < IotTwinMakerSourceConfigurationFilter; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2243
2244
2245
# File 'gems/aws-sdk-iottwinmaker/lib/aws-sdk-iottwinmaker/types.rb', line 2243

def unknown
  @unknown
end