Class: Aws::ServiceCatalog::Types::ListRecordHistorySearchFilter

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-servicecatalog/types.rb

Overview

Note:

When making an API call, you may pass ListRecordHistorySearchFilter data as a hash:

{
  key: "SearchFilterKey",
  value: "SearchFilterValue",
}

The search filter to use when listing history records.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The filter key.

  • ‘product` - Filter results based on the specified product identifier.

  • ‘provisionedproduct` - Filter results based on the provisioned product identifier.

Returns:

  • (String)


3455
3456
3457
3458
3459
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3455

class ListRecordHistorySearchFilter < Struct.new(
  :key,
  :value)
  include Aws::Structure
end

#valueString

The filter value.

Returns:

  • (String)


3455
3456
3457
3458
3459
# File 'lib/aws-sdk-servicecatalog/types.rb', line 3455

class ListRecordHistorySearchFilter < Struct.new(
  :key,
  :value)
  include Aws::Structure
end