Class: Aws::Redshift::Types::SnapshotSortingEntity

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

Overview

Note:

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

{
  attribute: "SOURCE_TYPE", # required, accepts SOURCE_TYPE, TOTAL_SIZE, CREATE_TIME
  sort_order: "ASC", # accepts ASC, DESC
}

Describes a sorting entity

Instance Attribute Summary collapse

Instance Attribute Details

#attributeString

The category for sorting the snapshots.

Returns:

  • (String)


7827
7828
7829
7830
7831
# File 'lib/aws-sdk-redshift/types.rb', line 7827

class SnapshotSortingEntity < Struct.new(
  :attribute,
  :sort_order)
  include Aws::Structure
end

#sort_orderString

The order for listing the attributes.

Returns:

  • (String)


7827
7828
7829
7830
7831
# File 'lib/aws-sdk-redshift/types.rb', line 7827

class SnapshotSortingEntity < Struct.new(
  :attribute,
  :sort_order)
  include Aws::Structure
end