Class: Aws::ElasticsearchService::Types::AutomatedSnapshotPauseOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::AutomatedSnapshotPauseOptions
- Defined in:
- gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb
Overview
Specifies the automated snapshot pause options for the domain. These options allow you to temporarily pause automated snapshots for a specified time period.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Whether automated snapshot pause is enabled for the domain.
-
#end_time ⇒ Time
The timestamp at which the automated snapshot pause ends.
-
#start_time ⇒ Time
The timestamp at which the automated snapshot pause begins.
-
#state ⇒ String
The current state of the automated snapshot pause.
Instance Attribute Details
#enabled ⇒ Boolean
Whether automated snapshot pause is enabled for the domain.
553 554 555 556 557 558 559 560 |
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 553 class AutomatedSnapshotPauseOptions < Struct.new( :enabled, :start_time, :end_time, :state) SENSITIVE = [] include Aws::Structure end |
#end_time ⇒ Time
The timestamp at which the automated snapshot pause ends.
553 554 555 556 557 558 559 560 |
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 553 class AutomatedSnapshotPauseOptions < Struct.new( :enabled, :start_time, :end_time, :state) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The timestamp at which the automated snapshot pause begins.
553 554 555 556 557 558 559 560 |
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 553 class AutomatedSnapshotPauseOptions < Struct.new( :enabled, :start_time, :end_time, :state) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The current state of the automated snapshot pause. Valid values are
Active, Completed, Scheduled, and Disabled.
553 554 555 556 557 558 559 560 |
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 553 class AutomatedSnapshotPauseOptions < Struct.new( :enabled, :start_time, :end_time, :state) SENSITIVE = [] include Aws::Structure end |