Class: Aws::MarketplaceCatalog::Types::AmiProductLastModifiedDateFilterDateRange

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

Overview

Object that contains date range of the last modified date to be filtered on. You can optionally provide a ‘BeforeValue` and/or `AfterValue`. Both are inclusive.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#after_valueString

Date after which the AMI product was last modified.

Returns:

  • (String)


102
103
104
105
106
107
# File 'lib/aws-sdk-marketplacecatalog/types.rb', line 102

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

#before_valueString

Date before which the AMI product was last modified.

Returns:

  • (String)


102
103
104
105
106
107
# File 'lib/aws-sdk-marketplacecatalog/types.rb', line 102

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