Method: Aws::SSM::Types::MaintenanceWindowIdentity#end_date

Defined in:
lib/aws-sdk-ssm/types.rb

#end_dateString

The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled to become inactive.

Returns:

  • (String)


13110
13111
13112
13113
13114
13115
13116
13117
13118
13119
13120
13121
13122
13123
13124
13125
# File 'lib/aws-sdk-ssm/types.rb', line 13110

class MaintenanceWindowIdentity < Struct.new(
  :window_id,
  :name,
  :description,
  :enabled,
  :duration,
  :cutoff,
  :schedule,
  :schedule_timezone,
  :schedule_offset,
  :end_date,
  :start_date,
  :next_execution_time)
  SENSITIVE = [:description]
  include Aws::Structure
end