Class: Aws::MarketplaceCatalog::Types::MachineLearningProductLastModifiedDateFilterDateRange

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

Overview

A date range for filtering machine learning products by their last modified date.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#after_valueString

The start date (inclusive) of the date range. The operation returns machine learning products with last modified dates on or after this date.

Returns:

  • (String)


1561
1562
1563
1564
1565
1566
# File 'gems/aws-sdk-marketplacecatalog/lib/aws-sdk-marketplacecatalog/types.rb', line 1561

class MachineLearningProductLastModifiedDateFilterDateRange < Struct.new(
  :after_value,
  :before_value)
  SENSITIVE = []
  include Aws::Structure
end

#before_valueString

The end date (inclusive) of the date range. The operation returns machine learning products with last modified dates on or before this date.

Returns:

  • (String)


1561
1562
1563
1564
1565
1566
# File 'gems/aws-sdk-marketplacecatalog/lib/aws-sdk-marketplacecatalog/types.rb', line 1561

class MachineLearningProductLastModifiedDateFilterDateRange < Struct.new(
  :after_value,
  :before_value)
  SENSITIVE = []
  include Aws::Structure
end