class Amazonite::DynamoDB::ListBackupsInput

Included Modules

Defined in:

dynamodb/list_backups_input.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(table_name : String | Nil = nil, limit : Int32 | Nil = nil, time_range_lower_bound : Time | Nil = nil, time_range_upper_bound : Time | Nil = nil, exclusive_start_backup_arn : String | Nil = nil, backup_type : BackupTypeFilter | Nil = nil) #

[View source]
def self.new(*, __pull_for_json_serializable pull : JSON::PullParser) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def backup_type : BackupTypeFilter | Nil #

The backups from the table specified by BackupType are listed.

Where BackupType can be:

  • USER - On-demand backup created by you. (The default setting if no other backup types are specified.)

  • SYSTEM - On-demand backup automatically created by DynamoDB.

  • ALL - All types of on-demand backups (USER and SYSTEM).


[View source]
def backup_type=(backup_type : BackupTypeFilter | Nil) #

The backups from the table specified by BackupType are listed.

Where BackupType can be:

  • USER - On-demand backup created by you. (The default setting if no other backup types are specified.)

  • SYSTEM - On-demand backup automatically created by DynamoDB.

  • ALL - All types of on-demand backups (USER and SYSTEM).


[View source]
def exclusive_start_backup_arn : String | Nil #

LastEvaluatedBackupArn is the Amazon Resource Name (ARN) of the backup last evaluated when the current page of results was returned, inclusive of the current page of results. This value may be specified as the ExclusiveStartBackupArn of a new ListBackups operation in order to fetch the next page of results.


[View source]
def exclusive_start_backup_arn=(exclusive_start_backup_arn : String | Nil) #

LastEvaluatedBackupArn is the Amazon Resource Name (ARN) of the backup last evaluated when the current page of results was returned, inclusive of the current page of results. This value may be specified as the ExclusiveStartBackupArn of a new ListBackups operation in order to fetch the next page of results.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def limit : Int32 | Nil #

Maximum number of backups to return at once.


[View source]
def limit=(limit : Int32 | Nil) #

Maximum number of backups to return at once.


[View source]
def table_name : String | Nil #

Lists the backups from the table specified in TableName. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.


[View source]
def table_name=(table_name : String | Nil) #

Lists the backups from the table specified in TableName. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.


[View source]
def time_range_lower_bound : Time | Nil #

Only backups created after this time are listed. TimeRangeLowerBound is inclusive.


[View source]
def time_range_lower_bound=(time_range_lower_bound : Time | Nil) #

Only backups created after this time are listed. TimeRangeLowerBound is inclusive.


[View source]
def time_range_upper_bound : Time | Nil #

Only backups created before this time are listed. TimeRangeUpperBound is exclusive.


[View source]
def time_range_upper_bound=(time_range_upper_bound : Time | Nil) #

Only backups created before this time are listed. TimeRangeUpperBound is exclusive.


[View source]
def validate! : Nil #

[View source]