Class: Aws::MarketplaceCatalog::Types::MachineLearningProductLastModifiedDateFilterDateRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceCatalog::Types::MachineLearningProductLastModifiedDateFilterDateRange
- 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
-
#after_value ⇒ String
The start date (inclusive) of the date range.
-
#before_value ⇒ String
The end date (inclusive) of the date range.
Instance Attribute Details
#after_value ⇒ String
The start date (inclusive) of the date range. The operation returns machine learning products with last modified dates on or after this date.
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_value ⇒ String
The end date (inclusive) of the date range. The operation returns machine learning products with last modified dates on or before this date.
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 |