Class: Aws::ElasticsearchService::Types::AutomatedSnapshotPauseRequestOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::AutomatedSnapshotPauseRequestOptions
- 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
-
#enabled ⇒ Boolean
Whether to enable or disable automated snapshot pause for the domain.
-
#end_time ⇒ Time
The timestamp at which the automated snapshot pause should end.
-
#start_time ⇒ Time
The timestamp at which the automated snapshot pause should begin.
Instance Attribute Details
#enabled ⇒ Boolean
Whether to enable or disable automated snapshot pause for the domain.
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_time ⇒ Time
The timestamp at which the automated snapshot pause should end. The
maximum allowed duration between StartTime and EndTime is 3
days.
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_time ⇒ Time
The timestamp at which the automated snapshot pause should begin.
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 |