Class: Aws::Redshift::Types::DeferredMaintenanceWindow
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::DeferredMaintenanceWindow
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-redshift/types.rb
Overview
Describes a deferred maintenance window
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#defer_maintenance_end_time ⇒ Time
A timestamp for the end of the time period when we defer maintenance.
-
#defer_maintenance_identifier ⇒ String
A unique identifier for the maintenance window.
-
#defer_maintenance_start_time ⇒ Time
A timestamp for the beginning of the time period when we defer maintenance.
Instance Attribute Details
#defer_maintenance_end_time ⇒ Time
A timestamp for the end of the time period when we defer maintenance.
3496 3497 3498 3499 3500 3501 3502 |
# File 'lib/aws-sdk-redshift/types.rb', line 3496 class DeferredMaintenanceWindow < Struct.new( :defer_maintenance_identifier, :defer_maintenance_start_time, :defer_maintenance_end_time) SENSITIVE = [] include Aws::Structure end |
#defer_maintenance_identifier ⇒ String
A unique identifier for the maintenance window.
3496 3497 3498 3499 3500 3501 3502 |
# File 'lib/aws-sdk-redshift/types.rb', line 3496 class DeferredMaintenanceWindow < Struct.new( :defer_maintenance_identifier, :defer_maintenance_start_time, :defer_maintenance_end_time) SENSITIVE = [] include Aws::Structure end |
#defer_maintenance_start_time ⇒ Time
A timestamp for the beginning of the time period when we defer maintenance.
3496 3497 3498 3499 3500 3501 3502 |
# File 'lib/aws-sdk-redshift/types.rb', line 3496 class DeferredMaintenanceWindow < Struct.new( :defer_maintenance_identifier, :defer_maintenance_start_time, :defer_maintenance_end_time) SENSITIVE = [] include Aws::Structure end |