Class: Aws::ElasticsearchService::Types::AutomatedSnapshotPauseRequestOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb

Overview

Specifies the automated snapshot pause request options for the domain.

Suspending snapshots reduces data protection. You cannot restore your domain to points in time when snapshots are suspended. Use this feature only for short-term operational needs such as migrations or maintenance windows.

Maximum suspension duration: 3 days.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Whether to enable or disable automated snapshot pause for the domain.

Returns:

  • (Boolean)


606
607
608
609
610
611
612
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 606

class AutomatedSnapshotPauseRequestOptions < Struct.new(
  :enabled,
  :start_time,
  :end_time)
  SENSITIVE = []
  include Aws::Structure
end

#end_timeTime

The timestamp at which the automated snapshot pause should end. The maximum allowed duration between StartTime and EndTime is 3 days.

Returns:

  • (Time)


606
607
608
609
610
611
612
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 606

class AutomatedSnapshotPauseRequestOptions < Struct.new(
  :enabled,
  :start_time,
  :end_time)
  SENSITIVE = []
  include Aws::Structure
end

#start_timeTime

The timestamp at which the automated snapshot pause should begin.

Returns:

  • (Time)


606
607
608
609
610
611
612
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 606

class AutomatedSnapshotPauseRequestOptions < Struct.new(
  :enabled,
  :start_time,
  :end_time)
  SENSITIVE = []
  include Aws::Structure
end