Class: Aws::BCMDashboards::Types::SchedulePeriod
- Inherits:
-
Struct
- Object
- Struct
- Aws::BCMDashboards::Types::SchedulePeriod
- Defined in:
- gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb
Overview
Defines the active time period for execution of the scheduled report.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
The end time of the schedule period.
-
#start_time ⇒ Time
The start time of the schedule period.
Instance Attribute Details
#end_time ⇒ Time
The end time of the schedule period. If not specified, defaults to 3
years from the time of the create or update request. The maximum
allowed value is 3 years from the current time. Setting an end time
beyond this limit returns a ValidationException.
1051 1052 1053 1054 1055 1056 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 1051 class SchedulePeriod < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The start time of the schedule period. If not specified, defaults to the time of the create or update request. The start time cannot be more than 5 minutes before the time of the request.
1051 1052 1053 1054 1055 1056 |
# File 'gems/aws-sdk-bcmdashboards/lib/aws-sdk-bcmdashboards/types.rb', line 1051 class SchedulePeriod < Struct.new( :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |