Class: Aws::OpenSearchService::Types::OffPeakWindowOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::OffPeakWindowOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opensearchservice/types.rb
Overview
Options for a domain’s [off-peak window], during which OpenSearch Service can perform mandatory configuration changes on the domain.
[1]: docs.aws.amazon.com/opensearch-service/latest/APIReference/API_OffPeakWindow.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Whether to enable an off-peak window.
-
#off_peak_window ⇒ Types::OffPeakWindow
Off-peak window settings for the domain.
Instance Attribute Details
#enabled ⇒ Boolean
Whether to enable an off-peak window.
This option is only available when modifying a domain created prior to February 16, 2023, not when creating a new domain. All domains created after this date have the off-peak window enabled by default. You can’t disable the off-peak window after it’s enabled for a domain.
5609 5610 5611 5612 5613 5614 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 5609 class OffPeakWindowOptions < Struct.new( :enabled, :off_peak_window) SENSITIVE = [] include Aws::Structure end |
#off_peak_window ⇒ Types::OffPeakWindow
Off-peak window settings for the domain.
5609 5610 5611 5612 5613 5614 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 5609 class OffPeakWindowOptions < Struct.new( :enabled, :off_peak_window) SENSITIVE = [] include Aws::Structure end |