Class: Aws::IoTTwinMaker::Types::OrderBy

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

Overview

Note:

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

{
  order: "ASCENDING", # accepts ASCENDING, DESCENDING
  property_name: "String", # required
}

Filter criteria that orders the return output. It can be sorted in ascending or descending order.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#orderString

The set order that filters results.

Returns:

  • (String)


2711
2712
2713
2714
2715
2716
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 2711

class OrderBy < Struct.new(
  :order,
  :property_name)
  SENSITIVE = []
  include Aws::Structure
end

#property_nameString

The property name.

Returns:

  • (String)


2711
2712
2713
2714
2715
2716
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 2711

class OrderBy < Struct.new(
  :order,
  :property_name)
  SENSITIVE = []
  include Aws::Structure
end