Class: Aws::SSM::Types::GetCalendarStateResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::GetCalendarStateResponse
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#at_time ⇒ String
The time, as an [ISO 8601][1] string, that you specified in your command.
-
#next_transition_time ⇒ String
The time, as an [ISO 8601][1] string, that the calendar state will change.
-
#state ⇒ String
The state of the calendar.
Instance Attribute Details
#at_time ⇒ String
The time, as an ISO 8601 string, that you specified in your
command. If you don't specify a time, GetCalendarState
uses the
current time.
7585 7586 7587 7588 7589 7590 7591 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 7585 class GetCalendarStateResponse < Struct.new( :state, :at_time, :next_transition_time) SENSITIVE = [] include Aws::Structure end |
#next_transition_time ⇒ String
The time, as an ISO 8601 string, that the calendar state will
change. If the current calendar state is OPEN
,
NextTransitionTime
indicates when the calendar state changes to
CLOSED
, and vice-versa.
7585 7586 7587 7588 7589 7590 7591 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 7585 class GetCalendarStateResponse < Struct.new( :state, :at_time, :next_transition_time) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The state of the calendar. An OPEN
calendar indicates that actions
are allowed to proceed, and a CLOSED
calendar indicates that
actions aren't allowed to proceed.
7585 7586 7587 7588 7589 7590 7591 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 7585 class GetCalendarStateResponse < Struct.new( :state, :at_time, :next_transition_time) SENSITIVE = [] include Aws::Structure end |