aws-sdk-ssm 1.80.0 → 1.85.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-ssm.rb +3 -1
- data/lib/aws-sdk-ssm/client.rb +110 -27
- data/lib/aws-sdk-ssm/client_api.rb +8 -0
- data/lib/aws-sdk-ssm/customizations.rb +1 -0
- data/lib/aws-sdk-ssm/errors.rb +2 -0
- data/lib/aws-sdk-ssm/resource.rb +2 -0
- data/lib/aws-sdk-ssm/types.rb +618 -29
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c52dbd9dad8d7c424f84fed75b848caf2329b22f0204eae992a3d6795caf828
|
4
|
+
data.tar.gz: abb5e8da3bb3993f7096b3ea02838f066fbcd7fdaa0640cb7519d8d0f4e50cf7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 549ca09d68ef6d73f95f250c497e6c1f54e458e6b00c1b71621af26fbd014a3a18759fd4f4cec66a31e6c4804c9e8275b4073e09052ffb7a157bc4e6e9c38512
|
7
|
+
data.tar.gz: 1f07e4f7b791a7b1eb7e142bebe03601b3528c61e4ebd6d69b742536bb602aee4d7b399c678506142c147bd1e576de7f0ac77915f7e5c14090fc2c60da0df50f
|
data/lib/aws-sdk-ssm.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-ssm/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::SSM
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.85.0'
|
49
51
|
|
50
52
|
end
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::SSM
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -161,7 +165,7 @@ module Aws::SSM
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -577,14 +581,19 @@ module Aws::SSM
|
|
577
581
|
req.send_request(options)
|
578
582
|
end
|
579
583
|
|
580
|
-
#
|
581
|
-
# instances
|
582
|
-
#
|
583
|
-
#
|
584
|
-
#
|
585
|
-
#
|
586
|
-
#
|
587
|
-
#
|
584
|
+
# A State Manager association defines the state that you want to
|
585
|
+
# maintain on your instances. For example, an association can specify
|
586
|
+
# that anti-virus software must be installed and running on your
|
587
|
+
# instances, or that certain ports must be closed. For static targets,
|
588
|
+
# the association specifies a schedule for when the configuration is
|
589
|
+
# reapplied. For dynamic targets, such as an AWS Resource Group or an
|
590
|
+
# AWS Autoscaling Group, State Manager applies the configuration when
|
591
|
+
# new instances are added to the group. The association also specifies
|
592
|
+
# actions to take when applying the configuration. For example, an
|
593
|
+
# association for anti-virus software might run once a day. If the
|
594
|
+
# software is not installed, then State Manager installs it. If the
|
595
|
+
# software is installed, but the service is not running, then the
|
596
|
+
# association might instruct State Manager to start the service.
|
588
597
|
#
|
589
598
|
# @option params [required, String] :name
|
590
599
|
# The name of the SSM document that contains the configuration
|
@@ -1143,6 +1152,18 @@ module Aws::SSM
|
|
1143
1152
|
#
|
1144
1153
|
# [1]: https://www.iana.org/time-zones
|
1145
1154
|
#
|
1155
|
+
# @option params [Integer] :schedule_offset
|
1156
|
+
# The number of days to wait after the date and time specified by a CRON
|
1157
|
+
# expression before running the maintenance window.
|
1158
|
+
#
|
1159
|
+
# For example, the following cron expression schedules a maintenance
|
1160
|
+
# window to run on the third Tuesday of every month at 11:30 PM.
|
1161
|
+
#
|
1162
|
+
# `cron(0 30 23 ? * TUE#3 *)`
|
1163
|
+
#
|
1164
|
+
# If the schedule offset is `2`, the maintenance window won't run until
|
1165
|
+
# two days later.
|
1166
|
+
#
|
1146
1167
|
# @option params [required, Integer] :duration
|
1147
1168
|
# The duration of the maintenance window in hours.
|
1148
1169
|
#
|
@@ -1198,6 +1219,7 @@ module Aws::SSM
|
|
1198
1219
|
# end_date: "MaintenanceWindowStringDateTime",
|
1199
1220
|
# schedule: "MaintenanceWindowSchedule", # required
|
1200
1221
|
# schedule_timezone: "MaintenanceWindowTimezone",
|
1222
|
+
# schedule_offset: 1,
|
1201
1223
|
# duration: 1, # required
|
1202
1224
|
# cutoff: 1, # required
|
1203
1225
|
# allow_unassociated_targets: false, # required
|
@@ -3678,6 +3700,7 @@ module Aws::SSM
|
|
3678
3700
|
# resp.window_identities[0].cutoff #=> Integer
|
3679
3701
|
# resp.window_identities[0].schedule #=> String
|
3680
3702
|
# resp.window_identities[0].schedule_timezone #=> String
|
3703
|
+
# resp.window_identities[0].schedule_offset #=> Integer
|
3681
3704
|
# resp.window_identities[0].end_date #=> String
|
3682
3705
|
# resp.window_identities[0].start_date #=> String
|
3683
3706
|
# resp.window_identities[0].next_execution_time #=> String
|
@@ -4068,6 +4091,22 @@ module Aws::SSM
|
|
4068
4091
|
# One or more filters. Use a filter to return a more specific list of
|
4069
4092
|
# results.
|
4070
4093
|
#
|
4094
|
+
# For `DescribePatchGroups`,valid filter keys include the following:
|
4095
|
+
#
|
4096
|
+
# * `NAME_PREFIX`\: The name of the patch group. Wildcards (*) are
|
4097
|
+
# accepted.
|
4098
|
+
#
|
4099
|
+
# * `OPERATING_SYSTEM`\: The supported operating system type to return
|
4100
|
+
# results for. For valid operating system values, see
|
4101
|
+
# GetDefaultPatchBaselineRequest$OperatingSystem in
|
4102
|
+
# CreatePatchBaseline.
|
4103
|
+
#
|
4104
|
+
# Examples:
|
4105
|
+
#
|
4106
|
+
# * `--filters Key=NAME_PREFIX,Values=MyPatchGroup*`
|
4107
|
+
#
|
4108
|
+
# * `--filters Key=OPERATING_SYSTEM,Values=AMAZON_LINUX_2`
|
4109
|
+
#
|
4071
4110
|
# @option params [String] :next_token
|
4072
4111
|
# The token for the next set of items to return. (You received this
|
4073
4112
|
# token from a previous call.)
|
@@ -4453,6 +4492,9 @@ module Aws::SSM
|
|
4453
4492
|
# If the document contains only one plugin, the name can be omitted and
|
4454
4493
|
# the details will be returned.
|
4455
4494
|
#
|
4495
|
+
# Plugin names are also referred to as step names in Systems Manager
|
4496
|
+
# documents.
|
4497
|
+
#
|
4456
4498
|
# @return [Types::GetCommandInvocationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4457
4499
|
#
|
4458
4500
|
# * {Types::GetCommandInvocationResult#command_id #command_id} => String
|
@@ -4852,6 +4894,7 @@ module Aws::SSM
|
|
4852
4894
|
# * {Types::GetMaintenanceWindowResult#end_date #end_date} => String
|
4853
4895
|
# * {Types::GetMaintenanceWindowResult#schedule #schedule} => String
|
4854
4896
|
# * {Types::GetMaintenanceWindowResult#schedule_timezone #schedule_timezone} => String
|
4897
|
+
# * {Types::GetMaintenanceWindowResult#schedule_offset #schedule_offset} => Integer
|
4855
4898
|
# * {Types::GetMaintenanceWindowResult#next_execution_time #next_execution_time} => String
|
4856
4899
|
# * {Types::GetMaintenanceWindowResult#duration #duration} => Integer
|
4857
4900
|
# * {Types::GetMaintenanceWindowResult#cutoff #cutoff} => Integer
|
@@ -4875,6 +4918,7 @@ module Aws::SSM
|
|
4875
4918
|
# resp.end_date #=> String
|
4876
4919
|
# resp.schedule #=> String
|
4877
4920
|
# resp.schedule_timezone #=> String
|
4921
|
+
# resp.schedule_offset #=> Integer
|
4878
4922
|
# resp.next_execution_time #=> String
|
4879
4923
|
# resp.duration #=> Integer
|
4880
4924
|
# resp.cutoff #=> Integer
|
@@ -6013,6 +6057,12 @@ module Aws::SSM
|
|
6013
6057
|
# @option params [String] :instance_id
|
6014
6058
|
# (Optional) Lists commands issued against this instance ID.
|
6015
6059
|
#
|
6060
|
+
# <note markdown="1"> You can't specify an instance ID in the same command that you specify
|
6061
|
+
# `Status` = `Pending`. This is because the command has not reached the
|
6062
|
+
# instance yet.
|
6063
|
+
#
|
6064
|
+
# </note>
|
6065
|
+
#
|
6016
6066
|
# @option params [Integer] :max_results
|
6017
6067
|
# (Optional) The maximum number of items to return for this call. The
|
6018
6068
|
# call also returns a token that you can specify in a subsequent call to
|
@@ -6897,15 +6947,18 @@ module Aws::SSM
|
|
6897
6947
|
# @option params [String] :type
|
6898
6948
|
# The type of parameter that you want to add to the system.
|
6899
6949
|
#
|
6950
|
+
# <note markdown="1"> `SecureString` is not currently supported for AWS CloudFormation
|
6951
|
+
# templates or in the China Regions.
|
6952
|
+
#
|
6953
|
+
# </note>
|
6954
|
+
#
|
6900
6955
|
# Items in a `StringList` must be separated by a comma (,). You can't
|
6901
6956
|
# use other punctuation or special character to escape items in the
|
6902
6957
|
# list. If you have a parameter value that requires a comma, then use
|
6903
6958
|
# the `String` data type.
|
6904
6959
|
#
|
6905
|
-
#
|
6906
|
-
#
|
6907
|
-
#
|
6908
|
-
# </note>
|
6960
|
+
# Specifying a parameter type is not required when updating a parameter.
|
6961
|
+
# You must specify a parameter type when creating a parameter.
|
6909
6962
|
#
|
6910
6963
|
# @option params [String] :key_id
|
6911
6964
|
# The KMS Key ID that you want to use to encrypt a parameter. Either the
|
@@ -7671,23 +7724,37 @@ module Aws::SSM
|
|
7671
7724
|
# Runs commands on one or more managed instances.
|
7672
7725
|
#
|
7673
7726
|
# @option params [Array<String>] :instance_ids
|
7674
|
-
# The
|
7675
|
-
#
|
7676
|
-
# you can
|
7677
|
-
#
|
7678
|
-
#
|
7679
|
-
#
|
7727
|
+
# The IDs of the instances where the command should run. Specifying
|
7728
|
+
# instance IDs is most useful when you are targeting a limited number of
|
7729
|
+
# instances, though you can specify up to 50 IDs.
|
7730
|
+
#
|
7731
|
+
# To target a larger number of instances, or if you prefer not to list
|
7732
|
+
# individual instance IDs, we recommend using the `Targets` option
|
7733
|
+
# instead. Using `Targets`, which accepts tag key-value pairs to
|
7734
|
+
# identify the instances to send commands to, you can a send command to
|
7735
|
+
# tens, hundreds, or thousands of instances at once.
|
7736
|
+
#
|
7737
|
+
# For more information about how to use targets, see [Using targets and
|
7738
|
+
# rate controls to send commands to a fleet][1] in the *AWS Systems
|
7739
|
+
# Manager User Guide*.
|
7680
7740
|
#
|
7681
7741
|
#
|
7682
7742
|
#
|
7683
7743
|
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html
|
7684
7744
|
#
|
7685
7745
|
# @option params [Array<Types::Target>] :targets
|
7686
|
-
#
|
7687
|
-
#
|
7688
|
-
#
|
7689
|
-
#
|
7690
|
-
#
|
7746
|
+
# An array of search criteria that targets instances using a `Key,Value`
|
7747
|
+
# combination that you specify. Specifying targets is most useful when
|
7748
|
+
# you want to send a command to a large number of instances at once.
|
7749
|
+
# Using `Targets`, which accepts tag key-value pairs to identify
|
7750
|
+
# instances, you can send a command to tens, hundreds, or thousands of
|
7751
|
+
# instances at once.
|
7752
|
+
#
|
7753
|
+
# To send a command to a smaller number of instances, you can use the
|
7754
|
+
# `InstanceIds` option instead.
|
7755
|
+
#
|
7756
|
+
# For more information about how to use targets, see [Sending commands
|
7757
|
+
# to a fleet][1] in the *AWS Systems Manager User Guide*.
|
7691
7758
|
#
|
7692
7759
|
#
|
7693
7760
|
#
|
@@ -8060,8 +8127,9 @@ module Aws::SSM
|
|
8060
8127
|
# @option params [String] :document_name
|
8061
8128
|
# The name of the SSM document to define the parameters and plugin
|
8062
8129
|
# settings for the session. For example, `SSM-SessionManagerRunShell`.
|
8063
|
-
#
|
8064
|
-
#
|
8130
|
+
# You can call the GetDocument API to verify the document exists before
|
8131
|
+
# attempting to start a session. If no document name is provided, a
|
8132
|
+
# shell to the instance is launched by default.
|
8065
8133
|
#
|
8066
8134
|
# @option params [Hash<String,Array>] :parameters
|
8067
8135
|
# Reserved for future use.
|
@@ -8631,6 +8699,18 @@ module Aws::SSM
|
|
8631
8699
|
#
|
8632
8700
|
# [1]: https://www.iana.org/time-zones
|
8633
8701
|
#
|
8702
|
+
# @option params [Integer] :schedule_offset
|
8703
|
+
# The number of days to wait after the date and time specified by a CRON
|
8704
|
+
# expression before running the maintenance window.
|
8705
|
+
#
|
8706
|
+
# For example, the following cron expression schedules a maintenance
|
8707
|
+
# window to run the third Tuesday of every month at 11:30 PM.
|
8708
|
+
#
|
8709
|
+
# `cron(0 30 23 ? * TUE#3 *)`
|
8710
|
+
#
|
8711
|
+
# If the schedule offset is `2`, the maintenance window won't run until
|
8712
|
+
# two days later.
|
8713
|
+
#
|
8634
8714
|
# @option params [Integer] :duration
|
8635
8715
|
# The duration of the maintenance window in hours.
|
8636
8716
|
#
|
@@ -8659,6 +8739,7 @@ module Aws::SSM
|
|
8659
8739
|
# * {Types::UpdateMaintenanceWindowResult#end_date #end_date} => String
|
8660
8740
|
# * {Types::UpdateMaintenanceWindowResult#schedule #schedule} => String
|
8661
8741
|
# * {Types::UpdateMaintenanceWindowResult#schedule_timezone #schedule_timezone} => String
|
8742
|
+
# * {Types::UpdateMaintenanceWindowResult#schedule_offset #schedule_offset} => Integer
|
8662
8743
|
# * {Types::UpdateMaintenanceWindowResult#duration #duration} => Integer
|
8663
8744
|
# * {Types::UpdateMaintenanceWindowResult#cutoff #cutoff} => Integer
|
8664
8745
|
# * {Types::UpdateMaintenanceWindowResult#allow_unassociated_targets #allow_unassociated_targets} => Boolean
|
@@ -8674,6 +8755,7 @@ module Aws::SSM
|
|
8674
8755
|
# end_date: "MaintenanceWindowStringDateTime",
|
8675
8756
|
# schedule: "MaintenanceWindowSchedule",
|
8676
8757
|
# schedule_timezone: "MaintenanceWindowTimezone",
|
8758
|
+
# schedule_offset: 1,
|
8677
8759
|
# duration: 1,
|
8678
8760
|
# cutoff: 1,
|
8679
8761
|
# allow_unassociated_targets: false,
|
@@ -8690,6 +8772,7 @@ module Aws::SSM
|
|
8690
8772
|
# resp.end_date #=> String
|
8691
8773
|
# resp.schedule #=> String
|
8692
8774
|
# resp.schedule_timezone #=> String
|
8775
|
+
# resp.schedule_offset #=> Integer
|
8693
8776
|
# resp.duration #=> Integer
|
8694
8777
|
# resp.cutoff #=> Integer
|
8695
8778
|
# resp.allow_unassociated_targets #=> Boolean
|
@@ -9535,7 +9618,7 @@ module Aws::SSM
|
|
9535
9618
|
params: params,
|
9536
9619
|
config: config)
|
9537
9620
|
context[:gem_name] = 'aws-sdk-ssm'
|
9538
|
-
context[:gem_version] = '1.
|
9621
|
+
context[:gem_version] = '1.85.0'
|
9539
9622
|
Seahorse::Client::Request.new(handlers, context)
|
9540
9623
|
end
|
9541
9624
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -614,6 +616,7 @@ module Aws::SSM
|
|
614
616
|
MaintenanceWindowLambdaQualifier = Shapes::StringShape.new(name: 'MaintenanceWindowLambdaQualifier')
|
615
617
|
MaintenanceWindowMaxResults = Shapes::IntegerShape.new(name: 'MaintenanceWindowMaxResults')
|
616
618
|
MaintenanceWindowName = Shapes::StringShape.new(name: 'MaintenanceWindowName')
|
619
|
+
MaintenanceWindowOffset = Shapes::IntegerShape.new(name: 'MaintenanceWindowOffset')
|
617
620
|
MaintenanceWindowResourceType = Shapes::StringShape.new(name: 'MaintenanceWindowResourceType')
|
618
621
|
MaintenanceWindowRunCommandParameters = Shapes::StructureShape.new(name: 'MaintenanceWindowRunCommandParameters')
|
619
622
|
MaintenanceWindowSchedule = Shapes::StringShape.new(name: 'MaintenanceWindowSchedule')
|
@@ -1533,6 +1536,7 @@ module Aws::SSM
|
|
1533
1536
|
CreateMaintenanceWindowRequest.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
1534
1537
|
CreateMaintenanceWindowRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, required: true, location_name: "Schedule"))
|
1535
1538
|
CreateMaintenanceWindowRequest.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
1539
|
+
CreateMaintenanceWindowRequest.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
1536
1540
|
CreateMaintenanceWindowRequest.add_member(:duration, Shapes::ShapeRef.new(shape: MaintenanceWindowDurationHours, required: true, location_name: "Duration"))
|
1537
1541
|
CreateMaintenanceWindowRequest.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, required: true, location_name: "Cutoff"))
|
1538
1542
|
CreateMaintenanceWindowRequest.add_member(:allow_unassociated_targets, Shapes::ShapeRef.new(shape: MaintenanceWindowAllowUnassociatedTargets, required: true, location_name: "AllowUnassociatedTargets"))
|
@@ -2287,6 +2291,7 @@ module Aws::SSM
|
|
2287
2291
|
GetMaintenanceWindowResult.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
2288
2292
|
GetMaintenanceWindowResult.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, location_name: "Schedule"))
|
2289
2293
|
GetMaintenanceWindowResult.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
2294
|
+
GetMaintenanceWindowResult.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
2290
2295
|
GetMaintenanceWindowResult.add_member(:next_execution_time, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "NextExecutionTime"))
|
2291
2296
|
GetMaintenanceWindowResult.add_member(:duration, Shapes::ShapeRef.new(shape: MaintenanceWindowDurationHours, location_name: "Duration"))
|
2292
2297
|
GetMaintenanceWindowResult.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, location_name: "Cutoff"))
|
@@ -2965,6 +2970,7 @@ module Aws::SSM
|
|
2965
2970
|
MaintenanceWindowIdentity.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, location_name: "Cutoff"))
|
2966
2971
|
MaintenanceWindowIdentity.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, location_name: "Schedule"))
|
2967
2972
|
MaintenanceWindowIdentity.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
2973
|
+
MaintenanceWindowIdentity.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
2968
2974
|
MaintenanceWindowIdentity.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
2969
2975
|
MaintenanceWindowIdentity.add_member(:start_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "StartDate"))
|
2970
2976
|
MaintenanceWindowIdentity.add_member(:next_execution_time, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "NextExecutionTime"))
|
@@ -3901,6 +3907,7 @@ module Aws::SSM
|
|
3901
3907
|
UpdateMaintenanceWindowRequest.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
3902
3908
|
UpdateMaintenanceWindowRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, location_name: "Schedule"))
|
3903
3909
|
UpdateMaintenanceWindowRequest.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
3910
|
+
UpdateMaintenanceWindowRequest.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
3904
3911
|
UpdateMaintenanceWindowRequest.add_member(:duration, Shapes::ShapeRef.new(shape: MaintenanceWindowDurationHours, location_name: "Duration", metadata: {"box"=>true}))
|
3905
3912
|
UpdateMaintenanceWindowRequest.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, location_name: "Cutoff", metadata: {"box"=>true}))
|
3906
3913
|
UpdateMaintenanceWindowRequest.add_member(:allow_unassociated_targets, Shapes::ShapeRef.new(shape: MaintenanceWindowAllowUnassociatedTargets, location_name: "AllowUnassociatedTargets", metadata: {"box"=>true}))
|
@@ -3915,6 +3922,7 @@ module Aws::SSM
|
|
3915
3922
|
UpdateMaintenanceWindowResult.add_member(:end_date, Shapes::ShapeRef.new(shape: MaintenanceWindowStringDateTime, location_name: "EndDate"))
|
3916
3923
|
UpdateMaintenanceWindowResult.add_member(:schedule, Shapes::ShapeRef.new(shape: MaintenanceWindowSchedule, location_name: "Schedule"))
|
3917
3924
|
UpdateMaintenanceWindowResult.add_member(:schedule_timezone, Shapes::ShapeRef.new(shape: MaintenanceWindowTimezone, location_name: "ScheduleTimezone"))
|
3925
|
+
UpdateMaintenanceWindowResult.add_member(:schedule_offset, Shapes::ShapeRef.new(shape: MaintenanceWindowOffset, location_name: "ScheduleOffset", metadata: {"box"=>true}))
|
3918
3926
|
UpdateMaintenanceWindowResult.add_member(:duration, Shapes::ShapeRef.new(shape: MaintenanceWindowDurationHours, location_name: "Duration"))
|
3919
3927
|
UpdateMaintenanceWindowResult.add_member(:cutoff, Shapes::ShapeRef.new(shape: MaintenanceWindowCutoff, location_name: "Cutoff"))
|
3920
3928
|
UpdateMaintenanceWindowResult.add_member(:allow_unassociated_targets, Shapes::ShapeRef.new(shape: MaintenanceWindowAllowUnassociatedTargets, location_name: "AllowUnassociatedTargets"))
|
data/lib/aws-sdk-ssm/errors.rb
CHANGED
data/lib/aws-sdk-ssm/resource.rb
CHANGED
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ module Aws::SSM
|
|
24
26
|
class AccountSharingInfo < Struct.new(
|
25
27
|
:account_id,
|
26
28
|
:shared_document_version)
|
29
|
+
SENSITIVE = []
|
27
30
|
include Aws::Structure
|
28
31
|
end
|
29
32
|
|
@@ -89,6 +92,7 @@ module Aws::SSM
|
|
89
92
|
:expired,
|
90
93
|
:created_date,
|
91
94
|
:tags)
|
95
|
+
SENSITIVE = []
|
92
96
|
include Aws::Structure
|
93
97
|
end
|
94
98
|
|
@@ -152,6 +156,7 @@ module Aws::SSM
|
|
152
156
|
:resource_type,
|
153
157
|
:resource_id,
|
154
158
|
:tags)
|
159
|
+
SENSITIVE = []
|
155
160
|
include Aws::Structure
|
156
161
|
end
|
157
162
|
|
@@ -170,6 +175,7 @@ module Aws::SSM
|
|
170
175
|
#
|
171
176
|
class AlreadyExistsException < Struct.new(
|
172
177
|
:message)
|
178
|
+
SENSITIVE = []
|
173
179
|
include Aws::Structure
|
174
180
|
end
|
175
181
|
|
@@ -239,6 +245,7 @@ module Aws::SSM
|
|
239
245
|
:overview,
|
240
246
|
:schedule_expression,
|
241
247
|
:association_name)
|
248
|
+
SENSITIVE = []
|
242
249
|
include Aws::Structure
|
243
250
|
end
|
244
251
|
|
@@ -405,6 +412,7 @@ module Aws::SSM
|
|
405
412
|
:compliance_severity,
|
406
413
|
:sync_compliance,
|
407
414
|
:apply_only_at_cron_interval)
|
415
|
+
SENSITIVE = []
|
408
416
|
include Aws::Structure
|
409
417
|
end
|
410
418
|
|
@@ -417,6 +425,7 @@ module Aws::SSM
|
|
417
425
|
#
|
418
426
|
class AssociationDoesNotExist < Struct.new(
|
419
427
|
:message)
|
428
|
+
SENSITIVE = []
|
420
429
|
include Aws::Structure
|
421
430
|
end
|
422
431
|
|
@@ -466,6 +475,7 @@ module Aws::SSM
|
|
466
475
|
:created_time,
|
467
476
|
:last_execution_date,
|
468
477
|
:resource_count_by_status)
|
478
|
+
SENSITIVE = []
|
469
479
|
include Aws::Structure
|
470
480
|
end
|
471
481
|
|
@@ -479,6 +489,7 @@ module Aws::SSM
|
|
479
489
|
#
|
480
490
|
class AssociationExecutionDoesNotExist < Struct.new(
|
481
491
|
:message)
|
492
|
+
SENSITIVE = []
|
482
493
|
include Aws::Structure
|
483
494
|
end
|
484
495
|
|
@@ -511,6 +522,7 @@ module Aws::SSM
|
|
511
522
|
:key,
|
512
523
|
:value,
|
513
524
|
:type)
|
525
|
+
SENSITIVE = []
|
514
526
|
include Aws::Structure
|
515
527
|
end
|
516
528
|
|
@@ -565,6 +577,7 @@ module Aws::SSM
|
|
565
577
|
:detailed_status,
|
566
578
|
:last_execution_date,
|
567
579
|
:output_source)
|
580
|
+
SENSITIVE = []
|
568
581
|
include Aws::Structure
|
569
582
|
end
|
570
583
|
|
@@ -591,6 +604,7 @@ module Aws::SSM
|
|
591
604
|
class AssociationExecutionTargetsFilter < Struct.new(
|
592
605
|
:key,
|
593
606
|
:value)
|
607
|
+
SENSITIVE = []
|
594
608
|
include Aws::Structure
|
595
609
|
end
|
596
610
|
|
@@ -617,6 +631,7 @@ module Aws::SSM
|
|
617
631
|
class AssociationFilter < Struct.new(
|
618
632
|
:key,
|
619
633
|
:value)
|
634
|
+
SENSITIVE = []
|
620
635
|
include Aws::Structure
|
621
636
|
end
|
622
637
|
|
@@ -650,6 +665,7 @@ module Aws::SSM
|
|
650
665
|
:status,
|
651
666
|
:detailed_status,
|
652
667
|
:association_status_aggregated_count)
|
668
|
+
SENSITIVE = []
|
653
669
|
include Aws::Structure
|
654
670
|
end
|
655
671
|
|
@@ -688,6 +704,7 @@ module Aws::SSM
|
|
688
704
|
:name,
|
689
705
|
:message,
|
690
706
|
:additional_info)
|
707
|
+
SENSITIVE = []
|
691
708
|
include Aws::Structure
|
692
709
|
end
|
693
710
|
|
@@ -814,6 +831,7 @@ module Aws::SSM
|
|
814
831
|
:compliance_severity,
|
815
832
|
:sync_compliance,
|
816
833
|
:apply_only_at_cron_interval)
|
834
|
+
SENSITIVE = []
|
817
835
|
include Aws::Structure
|
818
836
|
end
|
819
837
|
|
@@ -827,6 +845,7 @@ module Aws::SSM
|
|
827
845
|
#
|
828
846
|
class AssociationVersionLimitExceeded < Struct.new(
|
829
847
|
:message)
|
848
|
+
SENSITIVE = []
|
830
849
|
include Aws::Structure
|
831
850
|
end
|
832
851
|
|
@@ -861,6 +880,7 @@ module Aws::SSM
|
|
861
880
|
:hash,
|
862
881
|
:hash_type,
|
863
882
|
:url)
|
883
|
+
SENSITIVE = []
|
864
884
|
include Aws::Structure
|
865
885
|
end
|
866
886
|
|
@@ -874,6 +894,7 @@ module Aws::SSM
|
|
874
894
|
#
|
875
895
|
class AttachmentInformation < Struct.new(
|
876
896
|
:name)
|
897
|
+
SENSITIVE = []
|
877
898
|
include Aws::Structure
|
878
899
|
end
|
879
900
|
|
@@ -936,6 +957,7 @@ module Aws::SSM
|
|
936
957
|
:key,
|
937
958
|
:values,
|
938
959
|
:name)
|
960
|
+
SENSITIVE = []
|
939
961
|
include Aws::Structure
|
940
962
|
end
|
941
963
|
|
@@ -948,6 +970,7 @@ module Aws::SSM
|
|
948
970
|
#
|
949
971
|
class AutomationDefinitionNotFoundException < Struct.new(
|
950
972
|
:message)
|
973
|
+
SENSITIVE = []
|
951
974
|
include Aws::Structure
|
952
975
|
end
|
953
976
|
|
@@ -961,6 +984,7 @@ module Aws::SSM
|
|
961
984
|
#
|
962
985
|
class AutomationDefinitionVersionNotFoundException < Struct.new(
|
963
986
|
:message)
|
987
|
+
SENSITIVE = []
|
964
988
|
include Aws::Structure
|
965
989
|
end
|
966
990
|
|
@@ -1107,6 +1131,7 @@ module Aws::SSM
|
|
1107
1131
|
:target,
|
1108
1132
|
:target_locations,
|
1109
1133
|
:progress_counters)
|
1134
|
+
SENSITIVE = []
|
1110
1135
|
include Aws::Structure
|
1111
1136
|
end
|
1112
1137
|
|
@@ -1137,6 +1162,7 @@ module Aws::SSM
|
|
1137
1162
|
class AutomationExecutionFilter < Struct.new(
|
1138
1163
|
:key,
|
1139
1164
|
:values)
|
1165
|
+
SENSITIVE = []
|
1140
1166
|
include Aws::Structure
|
1141
1167
|
end
|
1142
1168
|
|
@@ -1150,6 +1176,7 @@ module Aws::SSM
|
|
1150
1176
|
#
|
1151
1177
|
class AutomationExecutionLimitExceededException < Struct.new(
|
1152
1178
|
:message)
|
1179
|
+
SENSITIVE = []
|
1153
1180
|
include Aws::Structure
|
1154
1181
|
end
|
1155
1182
|
|
@@ -1280,6 +1307,7 @@ module Aws::SSM
|
|
1280
1307
|
:max_errors,
|
1281
1308
|
:target,
|
1282
1309
|
:automation_type)
|
1310
|
+
SENSITIVE = []
|
1283
1311
|
include Aws::Structure
|
1284
1312
|
end
|
1285
1313
|
|
@@ -1293,6 +1321,7 @@ module Aws::SSM
|
|
1293
1321
|
#
|
1294
1322
|
class AutomationExecutionNotFoundException < Struct.new(
|
1295
1323
|
:message)
|
1324
|
+
SENSITIVE = []
|
1296
1325
|
include Aws::Structure
|
1297
1326
|
end
|
1298
1327
|
|
@@ -1306,6 +1335,7 @@ module Aws::SSM
|
|
1306
1335
|
#
|
1307
1336
|
class AutomationStepNotFoundException < Struct.new(
|
1308
1337
|
:message)
|
1338
|
+
SENSITIVE = []
|
1309
1339
|
include Aws::Structure
|
1310
1340
|
end
|
1311
1341
|
|
@@ -1332,6 +1362,7 @@ module Aws::SSM
|
|
1332
1362
|
class CancelCommandRequest < Struct.new(
|
1333
1363
|
:command_id,
|
1334
1364
|
:instance_ids)
|
1365
|
+
SENSITIVE = []
|
1335
1366
|
include Aws::Structure
|
1336
1367
|
end
|
1337
1368
|
|
@@ -1357,6 +1388,7 @@ module Aws::SSM
|
|
1357
1388
|
#
|
1358
1389
|
class CancelMaintenanceWindowExecutionRequest < Struct.new(
|
1359
1390
|
:window_execution_id)
|
1391
|
+
SENSITIVE = []
|
1360
1392
|
include Aws::Structure
|
1361
1393
|
end
|
1362
1394
|
|
@@ -1368,6 +1400,7 @@ module Aws::SSM
|
|
1368
1400
|
#
|
1369
1401
|
class CancelMaintenanceWindowExecutionResult < Struct.new(
|
1370
1402
|
:window_execution_id)
|
1403
|
+
SENSITIVE = []
|
1371
1404
|
include Aws::Structure
|
1372
1405
|
end
|
1373
1406
|
|
@@ -1397,6 +1430,7 @@ module Aws::SSM
|
|
1397
1430
|
class CloudWatchOutputConfig < Struct.new(
|
1398
1431
|
:cloud_watch_log_group_name,
|
1399
1432
|
:cloud_watch_output_enabled)
|
1433
|
+
SENSITIVE = []
|
1400
1434
|
include Aws::Structure
|
1401
1435
|
end
|
1402
1436
|
|
@@ -1603,11 +1637,17 @@ module Aws::SSM
|
|
1603
1637
|
:notification_config,
|
1604
1638
|
:cloud_watch_output_config,
|
1605
1639
|
:timeout_seconds)
|
1640
|
+
SENSITIVE = []
|
1606
1641
|
include Aws::Structure
|
1607
1642
|
end
|
1608
1643
|
|
1609
1644
|
# Describes a command filter.
|
1610
1645
|
#
|
1646
|
+
# <note markdown="1"> An instance ID can't be specified when a command status is `Pending`
|
1647
|
+
# because the command hasn't run on the instance yet.
|
1648
|
+
#
|
1649
|
+
# </note>
|
1650
|
+
#
|
1611
1651
|
# @note When making an API call, you may pass CommandFilter
|
1612
1652
|
# data as a hash:
|
1613
1653
|
#
|
@@ -1668,6 +1708,7 @@ module Aws::SSM
|
|
1668
1708
|
class CommandFilter < Struct.new(
|
1669
1709
|
:key,
|
1670
1710
|
:value)
|
1711
|
+
SENSITIVE = []
|
1671
1712
|
include Aws::Structure
|
1672
1713
|
end
|
1673
1714
|
|
@@ -1823,6 +1864,7 @@ module Aws::SSM
|
|
1823
1864
|
:service_role,
|
1824
1865
|
:notification_config,
|
1825
1866
|
:cloud_watch_output_config)
|
1867
|
+
SENSITIVE = []
|
1826
1868
|
include Aws::Structure
|
1827
1869
|
end
|
1828
1870
|
|
@@ -1976,6 +2018,7 @@ module Aws::SSM
|
|
1976
2018
|
:output_s3_region,
|
1977
2019
|
:output_s3_bucket_name,
|
1978
2020
|
:output_s3_key_prefix)
|
2021
|
+
SENSITIVE = []
|
1979
2022
|
include Aws::Structure
|
1980
2023
|
end
|
1981
2024
|
|
@@ -2015,6 +2058,7 @@ module Aws::SSM
|
|
2015
2058
|
:execution_time,
|
2016
2059
|
:execution_id,
|
2017
2060
|
:execution_type)
|
2061
|
+
SENSITIVE = []
|
2018
2062
|
include Aws::Structure
|
2019
2063
|
end
|
2020
2064
|
|
@@ -2083,6 +2127,7 @@ module Aws::SSM
|
|
2083
2127
|
:severity,
|
2084
2128
|
:execution_summary,
|
2085
2129
|
:details)
|
2130
|
+
SENSITIVE = []
|
2086
2131
|
include Aws::Structure
|
2087
2132
|
end
|
2088
2133
|
|
@@ -2135,6 +2180,7 @@ module Aws::SSM
|
|
2135
2180
|
:severity,
|
2136
2181
|
:status,
|
2137
2182
|
:details)
|
2183
|
+
SENSITIVE = []
|
2138
2184
|
include Aws::Structure
|
2139
2185
|
end
|
2140
2186
|
|
@@ -2169,6 +2215,7 @@ module Aws::SSM
|
|
2169
2215
|
:key,
|
2170
2216
|
:values,
|
2171
2217
|
:type)
|
2218
|
+
SENSITIVE = []
|
2172
2219
|
include Aws::Structure
|
2173
2220
|
end
|
2174
2221
|
|
@@ -2193,6 +2240,7 @@ module Aws::SSM
|
|
2193
2240
|
:compliance_type,
|
2194
2241
|
:compliant_summary,
|
2195
2242
|
:non_compliant_summary)
|
2243
|
+
SENSITIVE = []
|
2196
2244
|
include Aws::Structure
|
2197
2245
|
end
|
2198
2246
|
|
@@ -2206,6 +2254,7 @@ module Aws::SSM
|
|
2206
2254
|
#
|
2207
2255
|
class ComplianceTypeCountLimitExceededException < Struct.new(
|
2208
2256
|
:message)
|
2257
|
+
SENSITIVE = []
|
2209
2258
|
include Aws::Structure
|
2210
2259
|
end
|
2211
2260
|
|
@@ -2225,6 +2274,7 @@ module Aws::SSM
|
|
2225
2274
|
class CompliantSummary < Struct.new(
|
2226
2275
|
:compliant_count,
|
2227
2276
|
:severity_summary)
|
2277
|
+
SENSITIVE = []
|
2228
2278
|
include Aws::Structure
|
2229
2279
|
end
|
2230
2280
|
|
@@ -2319,6 +2369,7 @@ module Aws::SSM
|
|
2319
2369
|
:registration_limit,
|
2320
2370
|
:expiration_date,
|
2321
2371
|
:tags)
|
2372
|
+
SENSITIVE = []
|
2322
2373
|
include Aws::Structure
|
2323
2374
|
end
|
2324
2375
|
|
@@ -2338,6 +2389,7 @@ module Aws::SSM
|
|
2338
2389
|
class CreateActivationResult < Struct.new(
|
2339
2390
|
:activation_id,
|
2340
2391
|
:activation_code)
|
2392
|
+
SENSITIVE = []
|
2341
2393
|
include Aws::Structure
|
2342
2394
|
end
|
2343
2395
|
|
@@ -2386,6 +2438,7 @@ module Aws::SSM
|
|
2386
2438
|
#
|
2387
2439
|
class CreateAssociationBatchRequest < Struct.new(
|
2388
2440
|
:entries)
|
2441
|
+
SENSITIVE = []
|
2389
2442
|
include Aws::Structure
|
2390
2443
|
end
|
2391
2444
|
|
@@ -2558,6 +2611,7 @@ module Aws::SSM
|
|
2558
2611
|
:compliance_severity,
|
2559
2612
|
:sync_compliance,
|
2560
2613
|
:apply_only_at_cron_interval)
|
2614
|
+
SENSITIVE = []
|
2561
2615
|
include Aws::Structure
|
2562
2616
|
end
|
2563
2617
|
|
@@ -2574,6 +2628,7 @@ module Aws::SSM
|
|
2574
2628
|
class CreateAssociationBatchResult < Struct.new(
|
2575
2629
|
:successful,
|
2576
2630
|
:failed)
|
2631
|
+
SENSITIVE = []
|
2577
2632
|
include Aws::Structure
|
2578
2633
|
end
|
2579
2634
|
|
@@ -2764,6 +2819,7 @@ module Aws::SSM
|
|
2764
2819
|
:compliance_severity,
|
2765
2820
|
:sync_compliance,
|
2766
2821
|
:apply_only_at_cron_interval)
|
2822
|
+
SENSITIVE = []
|
2767
2823
|
include Aws::Structure
|
2768
2824
|
end
|
2769
2825
|
|
@@ -2775,6 +2831,7 @@ module Aws::SSM
|
|
2775
2831
|
#
|
2776
2832
|
class CreateAssociationResult < Struct.new(
|
2777
2833
|
:association_description)
|
2834
|
+
SENSITIVE = []
|
2778
2835
|
include Aws::Structure
|
2779
2836
|
end
|
2780
2837
|
|
@@ -2922,6 +2979,7 @@ module Aws::SSM
|
|
2922
2979
|
:document_format,
|
2923
2980
|
:target_type,
|
2924
2981
|
:tags)
|
2982
|
+
SENSITIVE = []
|
2925
2983
|
include Aws::Structure
|
2926
2984
|
end
|
2927
2985
|
|
@@ -2933,6 +2991,7 @@ module Aws::SSM
|
|
2933
2991
|
#
|
2934
2992
|
class CreateDocumentResult < Struct.new(
|
2935
2993
|
:document_description)
|
2994
|
+
SENSITIVE = []
|
2936
2995
|
include Aws::Structure
|
2937
2996
|
end
|
2938
2997
|
|
@@ -2946,6 +3005,7 @@ module Aws::SSM
|
|
2946
3005
|
# end_date: "MaintenanceWindowStringDateTime",
|
2947
3006
|
# schedule: "MaintenanceWindowSchedule", # required
|
2948
3007
|
# schedule_timezone: "MaintenanceWindowTimezone",
|
3008
|
+
# schedule_offset: 1,
|
2949
3009
|
# duration: 1, # required
|
2950
3010
|
# cutoff: 1, # required
|
2951
3011
|
# allow_unassociated_targets: false, # required
|
@@ -2999,6 +3059,19 @@ module Aws::SSM
|
|
2999
3059
|
# [1]: https://www.iana.org/time-zones
|
3000
3060
|
# @return [String]
|
3001
3061
|
#
|
3062
|
+
# @!attribute [rw] schedule_offset
|
3063
|
+
# The number of days to wait after the date and time specified by a
|
3064
|
+
# CRON expression before running the maintenance window.
|
3065
|
+
#
|
3066
|
+
# For example, the following cron expression schedules a maintenance
|
3067
|
+
# window to run on the third Tuesday of every month at 11:30 PM.
|
3068
|
+
#
|
3069
|
+
# `cron(0 30 23 ? * TUE#3 *)`
|
3070
|
+
#
|
3071
|
+
# If the schedule offset is `2`, the maintenance window won't run
|
3072
|
+
# until two days later.
|
3073
|
+
# @return [Integer]
|
3074
|
+
#
|
3002
3075
|
# @!attribute [rw] duration
|
3003
3076
|
# The duration of the maintenance window in hours.
|
3004
3077
|
# @return [Integer]
|
@@ -3055,11 +3128,13 @@ module Aws::SSM
|
|
3055
3128
|
:end_date,
|
3056
3129
|
:schedule,
|
3057
3130
|
:schedule_timezone,
|
3131
|
+
:schedule_offset,
|
3058
3132
|
:duration,
|
3059
3133
|
:cutoff,
|
3060
3134
|
:allow_unassociated_targets,
|
3061
3135
|
:client_token,
|
3062
3136
|
:tags)
|
3137
|
+
SENSITIVE = [:description]
|
3063
3138
|
include Aws::Structure
|
3064
3139
|
end
|
3065
3140
|
|
@@ -3071,6 +3146,7 @@ module Aws::SSM
|
|
3071
3146
|
#
|
3072
3147
|
class CreateMaintenanceWindowResult < Struct.new(
|
3073
3148
|
:window_id)
|
3149
|
+
SENSITIVE = []
|
3074
3150
|
include Aws::Structure
|
3075
3151
|
end
|
3076
3152
|
|
@@ -3214,6 +3290,7 @@ module Aws::SSM
|
|
3214
3290
|
:tags,
|
3215
3291
|
:category,
|
3216
3292
|
:severity)
|
3293
|
+
SENSITIVE = []
|
3217
3294
|
include Aws::Structure
|
3218
3295
|
end
|
3219
3296
|
|
@@ -3225,6 +3302,7 @@ module Aws::SSM
|
|
3225
3302
|
#
|
3226
3303
|
class CreateOpsItemResponse < Struct.new(
|
3227
3304
|
:ops_item_id)
|
3305
|
+
SENSITIVE = []
|
3228
3306
|
include Aws::Structure
|
3229
3307
|
end
|
3230
3308
|
|
@@ -3405,6 +3483,7 @@ module Aws::SSM
|
|
3405
3483
|
:sources,
|
3406
3484
|
:client_token,
|
3407
3485
|
:tags)
|
3486
|
+
SENSITIVE = []
|
3408
3487
|
include Aws::Structure
|
3409
3488
|
end
|
3410
3489
|
|
@@ -3416,6 +3495,7 @@ module Aws::SSM
|
|
3416
3495
|
#
|
3417
3496
|
class CreatePatchBaselineResult < Struct.new(
|
3418
3497
|
:baseline_id)
|
3498
|
+
SENSITIVE = []
|
3419
3499
|
include Aws::Structure
|
3420
3500
|
end
|
3421
3501
|
|
@@ -3482,6 +3562,7 @@ module Aws::SSM
|
|
3482
3562
|
:s3_destination,
|
3483
3563
|
:sync_type,
|
3484
3564
|
:sync_source)
|
3565
|
+
SENSITIVE = []
|
3485
3566
|
include Aws::Structure
|
3486
3567
|
end
|
3487
3568
|
|
@@ -3499,6 +3580,7 @@ module Aws::SSM
|
|
3499
3580
|
#
|
3500
3581
|
class CustomSchemaCountLimitExceededException < Struct.new(
|
3501
3582
|
:message)
|
3583
|
+
SENSITIVE = []
|
3502
3584
|
include Aws::Structure
|
3503
3585
|
end
|
3504
3586
|
|
@@ -3517,6 +3599,7 @@ module Aws::SSM
|
|
3517
3599
|
#
|
3518
3600
|
class DeleteActivationRequest < Struct.new(
|
3519
3601
|
:activation_id)
|
3602
|
+
SENSITIVE = []
|
3520
3603
|
include Aws::Structure
|
3521
3604
|
end
|
3522
3605
|
|
@@ -3551,6 +3634,7 @@ module Aws::SSM
|
|
3551
3634
|
:name,
|
3552
3635
|
:instance_id,
|
3553
3636
|
:association_id)
|
3637
|
+
SENSITIVE = []
|
3554
3638
|
include Aws::Structure
|
3555
3639
|
end
|
3556
3640
|
|
@@ -3597,6 +3681,7 @@ module Aws::SSM
|
|
3597
3681
|
:document_version,
|
3598
3682
|
:version_name,
|
3599
3683
|
:force)
|
3684
|
+
SENSITIVE = []
|
3600
3685
|
include Aws::Structure
|
3601
3686
|
end
|
3602
3687
|
|
@@ -3656,6 +3741,7 @@ module Aws::SSM
|
|
3656
3741
|
:schema_delete_option,
|
3657
3742
|
:dry_run,
|
3658
3743
|
:client_token)
|
3744
|
+
SENSITIVE = []
|
3659
3745
|
include Aws::Structure
|
3660
3746
|
end
|
3661
3747
|
|
@@ -3686,6 +3772,7 @@ module Aws::SSM
|
|
3686
3772
|
:deletion_id,
|
3687
3773
|
:type_name,
|
3688
3774
|
:deletion_summary)
|
3775
|
+
SENSITIVE = []
|
3689
3776
|
include Aws::Structure
|
3690
3777
|
end
|
3691
3778
|
|
@@ -3704,6 +3791,7 @@ module Aws::SSM
|
|
3704
3791
|
#
|
3705
3792
|
class DeleteMaintenanceWindowRequest < Struct.new(
|
3706
3793
|
:window_id)
|
3794
|
+
SENSITIVE = []
|
3707
3795
|
include Aws::Structure
|
3708
3796
|
end
|
3709
3797
|
|
@@ -3715,6 +3803,7 @@ module Aws::SSM
|
|
3715
3803
|
#
|
3716
3804
|
class DeleteMaintenanceWindowResult < Struct.new(
|
3717
3805
|
:window_id)
|
3806
|
+
SENSITIVE = []
|
3718
3807
|
include Aws::Structure
|
3719
3808
|
end
|
3720
3809
|
|
@@ -3733,6 +3822,7 @@ module Aws::SSM
|
|
3733
3822
|
#
|
3734
3823
|
class DeleteParameterRequest < Struct.new(
|
3735
3824
|
:name)
|
3825
|
+
SENSITIVE = []
|
3736
3826
|
include Aws::Structure
|
3737
3827
|
end
|
3738
3828
|
|
@@ -3755,6 +3845,7 @@ module Aws::SSM
|
|
3755
3845
|
#
|
3756
3846
|
class DeleteParametersRequest < Struct.new(
|
3757
3847
|
:names)
|
3848
|
+
SENSITIVE = []
|
3758
3849
|
include Aws::Structure
|
3759
3850
|
end
|
3760
3851
|
|
@@ -3772,6 +3863,7 @@ module Aws::SSM
|
|
3772
3863
|
class DeleteParametersResult < Struct.new(
|
3773
3864
|
:deleted_parameters,
|
3774
3865
|
:invalid_parameters)
|
3866
|
+
SENSITIVE = []
|
3775
3867
|
include Aws::Structure
|
3776
3868
|
end
|
3777
3869
|
|
@@ -3790,6 +3882,7 @@ module Aws::SSM
|
|
3790
3882
|
#
|
3791
3883
|
class DeletePatchBaselineRequest < Struct.new(
|
3792
3884
|
:baseline_id)
|
3885
|
+
SENSITIVE = []
|
3793
3886
|
include Aws::Structure
|
3794
3887
|
end
|
3795
3888
|
|
@@ -3801,6 +3894,7 @@ module Aws::SSM
|
|
3801
3894
|
#
|
3802
3895
|
class DeletePatchBaselineResult < Struct.new(
|
3803
3896
|
:baseline_id)
|
3897
|
+
SENSITIVE = []
|
3804
3898
|
include Aws::Structure
|
3805
3899
|
end
|
3806
3900
|
|
@@ -3825,6 +3919,7 @@ module Aws::SSM
|
|
3825
3919
|
class DeleteResourceDataSyncRequest < Struct.new(
|
3826
3920
|
:sync_name,
|
3827
3921
|
:sync_type)
|
3922
|
+
SENSITIVE = []
|
3828
3923
|
include Aws::Structure
|
3829
3924
|
end
|
3830
3925
|
|
@@ -3848,6 +3943,7 @@ module Aws::SSM
|
|
3848
3943
|
#
|
3849
3944
|
class DeregisterManagedInstanceRequest < Struct.new(
|
3850
3945
|
:instance_id)
|
3946
|
+
SENSITIVE = []
|
3851
3947
|
include Aws::Structure
|
3852
3948
|
end
|
3853
3949
|
|
@@ -3877,6 +3973,7 @@ module Aws::SSM
|
|
3877
3973
|
class DeregisterPatchBaselineForPatchGroupRequest < Struct.new(
|
3878
3974
|
:baseline_id,
|
3879
3975
|
:patch_group)
|
3976
|
+
SENSITIVE = []
|
3880
3977
|
include Aws::Structure
|
3881
3978
|
end
|
3882
3979
|
|
@@ -3893,6 +3990,7 @@ module Aws::SSM
|
|
3893
3990
|
class DeregisterPatchBaselineForPatchGroupResult < Struct.new(
|
3894
3991
|
:baseline_id,
|
3895
3992
|
:patch_group)
|
3993
|
+
SENSITIVE = []
|
3896
3994
|
include Aws::Structure
|
3897
3995
|
end
|
3898
3996
|
|
@@ -3925,6 +4023,7 @@ module Aws::SSM
|
|
3925
4023
|
:window_id,
|
3926
4024
|
:window_target_id,
|
3927
4025
|
:safe)
|
4026
|
+
SENSITIVE = []
|
3928
4027
|
include Aws::Structure
|
3929
4028
|
end
|
3930
4029
|
|
@@ -3941,6 +4040,7 @@ module Aws::SSM
|
|
3941
4040
|
class DeregisterTargetFromMaintenanceWindowResult < Struct.new(
|
3942
4041
|
:window_id,
|
3943
4042
|
:window_target_id)
|
4043
|
+
SENSITIVE = []
|
3944
4044
|
include Aws::Structure
|
3945
4045
|
end
|
3946
4046
|
|
@@ -3965,6 +4065,7 @@ module Aws::SSM
|
|
3965
4065
|
class DeregisterTaskFromMaintenanceWindowRequest < Struct.new(
|
3966
4066
|
:window_id,
|
3967
4067
|
:window_task_id)
|
4068
|
+
SENSITIVE = []
|
3968
4069
|
include Aws::Structure
|
3969
4070
|
end
|
3970
4071
|
|
@@ -3981,6 +4082,7 @@ module Aws::SSM
|
|
3981
4082
|
class DeregisterTaskFromMaintenanceWindowResult < Struct.new(
|
3982
4083
|
:window_id,
|
3983
4084
|
:window_task_id)
|
4085
|
+
SENSITIVE = []
|
3984
4086
|
include Aws::Structure
|
3985
4087
|
end
|
3986
4088
|
|
@@ -4007,6 +4109,7 @@ module Aws::SSM
|
|
4007
4109
|
class DescribeActivationsFilter < Struct.new(
|
4008
4110
|
:filter_key,
|
4009
4111
|
:filter_values)
|
4112
|
+
SENSITIVE = []
|
4010
4113
|
include Aws::Structure
|
4011
4114
|
end
|
4012
4115
|
|
@@ -4045,6 +4148,7 @@ module Aws::SSM
|
|
4045
4148
|
:filters,
|
4046
4149
|
:max_results,
|
4047
4150
|
:next_token)
|
4151
|
+
SENSITIVE = []
|
4048
4152
|
include Aws::Structure
|
4049
4153
|
end
|
4050
4154
|
|
@@ -4062,6 +4166,7 @@ module Aws::SSM
|
|
4062
4166
|
class DescribeActivationsResult < Struct.new(
|
4063
4167
|
:activation_list,
|
4064
4168
|
:next_token)
|
4169
|
+
SENSITIVE = []
|
4065
4170
|
include Aws::Structure
|
4066
4171
|
end
|
4067
4172
|
|
@@ -4120,6 +4225,7 @@ module Aws::SSM
|
|
4120
4225
|
:filters,
|
4121
4226
|
:max_results,
|
4122
4227
|
:next_token)
|
4228
|
+
SENSITIVE = []
|
4123
4229
|
include Aws::Structure
|
4124
4230
|
end
|
4125
4231
|
|
@@ -4137,6 +4243,7 @@ module Aws::SSM
|
|
4137
4243
|
class DescribeAssociationExecutionTargetsResult < Struct.new(
|
4138
4244
|
:association_execution_targets,
|
4139
4245
|
:next_token)
|
4246
|
+
SENSITIVE = []
|
4140
4247
|
include Aws::Structure
|
4141
4248
|
end
|
4142
4249
|
|
@@ -4190,6 +4297,7 @@ module Aws::SSM
|
|
4190
4297
|
:filters,
|
4191
4298
|
:max_results,
|
4192
4299
|
:next_token)
|
4300
|
+
SENSITIVE = []
|
4193
4301
|
include Aws::Structure
|
4194
4302
|
end
|
4195
4303
|
|
@@ -4207,6 +4315,7 @@ module Aws::SSM
|
|
4207
4315
|
class DescribeAssociationExecutionsResult < Struct.new(
|
4208
4316
|
:association_executions,
|
4209
4317
|
:next_token)
|
4318
|
+
SENSITIVE = []
|
4210
4319
|
include Aws::Structure
|
4211
4320
|
end
|
4212
4321
|
|
@@ -4247,6 +4356,7 @@ module Aws::SSM
|
|
4247
4356
|
:instance_id,
|
4248
4357
|
:association_id,
|
4249
4358
|
:association_version)
|
4359
|
+
SENSITIVE = []
|
4250
4360
|
include Aws::Structure
|
4251
4361
|
end
|
4252
4362
|
|
@@ -4258,6 +4368,7 @@ module Aws::SSM
|
|
4258
4368
|
#
|
4259
4369
|
class DescribeAssociationResult < Struct.new(
|
4260
4370
|
:association_description)
|
4371
|
+
SENSITIVE = []
|
4261
4372
|
include Aws::Structure
|
4262
4373
|
end
|
4263
4374
|
|
@@ -4296,6 +4407,7 @@ module Aws::SSM
|
|
4296
4407
|
:filters,
|
4297
4408
|
:max_results,
|
4298
4409
|
:next_token)
|
4410
|
+
SENSITIVE = []
|
4299
4411
|
include Aws::Structure
|
4300
4412
|
end
|
4301
4413
|
|
@@ -4314,6 +4426,7 @@ module Aws::SSM
|
|
4314
4426
|
class DescribeAutomationExecutionsResult < Struct.new(
|
4315
4427
|
:automation_execution_metadata_list,
|
4316
4428
|
:next_token)
|
4429
|
+
SENSITIVE = []
|
4317
4430
|
include Aws::Structure
|
4318
4431
|
end
|
4319
4432
|
|
@@ -4367,6 +4480,7 @@ module Aws::SSM
|
|
4367
4480
|
:next_token,
|
4368
4481
|
:max_results,
|
4369
4482
|
:reverse_order)
|
4483
|
+
SENSITIVE = []
|
4370
4484
|
include Aws::Structure
|
4371
4485
|
end
|
4372
4486
|
|
@@ -4385,6 +4499,7 @@ module Aws::SSM
|
|
4385
4499
|
class DescribeAutomationStepExecutionsResult < Struct.new(
|
4386
4500
|
:step_executions,
|
4387
4501
|
:next_token)
|
4502
|
+
SENSITIVE = []
|
4388
4503
|
include Aws::Structure
|
4389
4504
|
end
|
4390
4505
|
|
@@ -4421,6 +4536,7 @@ module Aws::SSM
|
|
4421
4536
|
:filters,
|
4422
4537
|
:max_results,
|
4423
4538
|
:next_token)
|
4539
|
+
SENSITIVE = []
|
4424
4540
|
include Aws::Structure
|
4425
4541
|
end
|
4426
4542
|
|
@@ -4438,6 +4554,7 @@ module Aws::SSM
|
|
4438
4554
|
class DescribeAvailablePatchesResult < Struct.new(
|
4439
4555
|
:patches,
|
4440
4556
|
:next_token)
|
4557
|
+
SENSITIVE = []
|
4441
4558
|
include Aws::Structure
|
4442
4559
|
end
|
4443
4560
|
|
@@ -4463,6 +4580,7 @@ module Aws::SSM
|
|
4463
4580
|
class DescribeDocumentPermissionRequest < Struct.new(
|
4464
4581
|
:name,
|
4465
4582
|
:permission_type)
|
4583
|
+
SENSITIVE = []
|
4466
4584
|
include Aws::Structure
|
4467
4585
|
end
|
4468
4586
|
|
@@ -4481,6 +4599,7 @@ module Aws::SSM
|
|
4481
4599
|
class DescribeDocumentPermissionResponse < Struct.new(
|
4482
4600
|
:account_ids,
|
4483
4601
|
:account_sharing_info_list)
|
4602
|
+
SENSITIVE = []
|
4484
4603
|
include Aws::Structure
|
4485
4604
|
end
|
4486
4605
|
|
@@ -4514,6 +4633,7 @@ module Aws::SSM
|
|
4514
4633
|
:name,
|
4515
4634
|
:document_version,
|
4516
4635
|
:version_name)
|
4636
|
+
SENSITIVE = []
|
4517
4637
|
include Aws::Structure
|
4518
4638
|
end
|
4519
4639
|
|
@@ -4525,6 +4645,7 @@ module Aws::SSM
|
|
4525
4645
|
#
|
4526
4646
|
class DescribeDocumentResult < Struct.new(
|
4527
4647
|
:document)
|
4648
|
+
SENSITIVE = []
|
4528
4649
|
include Aws::Structure
|
4529
4650
|
end
|
4530
4651
|
|
@@ -4558,6 +4679,7 @@ module Aws::SSM
|
|
4558
4679
|
:instance_id,
|
4559
4680
|
:max_results,
|
4560
4681
|
:next_token)
|
4682
|
+
SENSITIVE = []
|
4561
4683
|
include Aws::Structure
|
4562
4684
|
end
|
4563
4685
|
|
@@ -4575,6 +4697,7 @@ module Aws::SSM
|
|
4575
4697
|
class DescribeEffectiveInstanceAssociationsResult < Struct.new(
|
4576
4698
|
:associations,
|
4577
4699
|
:next_token)
|
4700
|
+
SENSITIVE = []
|
4578
4701
|
include Aws::Structure
|
4579
4702
|
end
|
4580
4703
|
|
@@ -4606,6 +4729,7 @@ module Aws::SSM
|
|
4606
4729
|
:baseline_id,
|
4607
4730
|
:max_results,
|
4608
4731
|
:next_token)
|
4732
|
+
SENSITIVE = []
|
4609
4733
|
include Aws::Structure
|
4610
4734
|
end
|
4611
4735
|
|
@@ -4623,6 +4747,7 @@ module Aws::SSM
|
|
4623
4747
|
class DescribeEffectivePatchesForPatchBaselineResult < Struct.new(
|
4624
4748
|
:effective_patches,
|
4625
4749
|
:next_token)
|
4750
|
+
SENSITIVE = []
|
4626
4751
|
include Aws::Structure
|
4627
4752
|
end
|
4628
4753
|
|
@@ -4656,6 +4781,7 @@ module Aws::SSM
|
|
4656
4781
|
:instance_id,
|
4657
4782
|
:max_results,
|
4658
4783
|
:next_token)
|
4784
|
+
SENSITIVE = []
|
4659
4785
|
include Aws::Structure
|
4660
4786
|
end
|
4661
4787
|
|
@@ -4673,6 +4799,7 @@ module Aws::SSM
|
|
4673
4799
|
class DescribeInstanceAssociationsStatusResult < Struct.new(
|
4674
4800
|
:instance_association_status_infos,
|
4675
4801
|
:next_token)
|
4802
|
+
SENSITIVE = []
|
4676
4803
|
include Aws::Structure
|
4677
4804
|
end
|
4678
4805
|
|
@@ -4733,6 +4860,7 @@ module Aws::SSM
|
|
4733
4860
|
:filters,
|
4734
4861
|
:max_results,
|
4735
4862
|
:next_token)
|
4863
|
+
SENSITIVE = []
|
4736
4864
|
include Aws::Structure
|
4737
4865
|
end
|
4738
4866
|
|
@@ -4750,6 +4878,7 @@ module Aws::SSM
|
|
4750
4878
|
class DescribeInstanceInformationResult < Struct.new(
|
4751
4879
|
:instance_information_list,
|
4752
4880
|
:next_token)
|
4881
|
+
SENSITIVE = []
|
4753
4882
|
include Aws::Structure
|
4754
4883
|
end
|
4755
4884
|
|
@@ -4800,6 +4929,7 @@ module Aws::SSM
|
|
4800
4929
|
:filters,
|
4801
4930
|
:next_token,
|
4802
4931
|
:max_results)
|
4932
|
+
SENSITIVE = []
|
4803
4933
|
include Aws::Structure
|
4804
4934
|
end
|
4805
4935
|
|
@@ -4817,6 +4947,7 @@ module Aws::SSM
|
|
4817
4947
|
class DescribeInstancePatchStatesForPatchGroupResult < Struct.new(
|
4818
4948
|
:instance_patch_states,
|
4819
4949
|
:next_token)
|
4950
|
+
SENSITIVE = []
|
4820
4951
|
include Aws::Structure
|
4821
4952
|
end
|
4822
4953
|
|
@@ -4849,6 +4980,7 @@ module Aws::SSM
|
|
4849
4980
|
:instance_ids,
|
4850
4981
|
:next_token,
|
4851
4982
|
:max_results)
|
4983
|
+
SENSITIVE = []
|
4852
4984
|
include Aws::Structure
|
4853
4985
|
end
|
4854
4986
|
|
@@ -4866,6 +4998,7 @@ module Aws::SSM
|
|
4866
4998
|
class DescribeInstancePatchStatesResult < Struct.new(
|
4867
4999
|
:instance_patch_states,
|
4868
5000
|
:next_token)
|
5001
|
+
SENSITIVE = []
|
4869
5002
|
include Aws::Structure
|
4870
5003
|
end
|
4871
5004
|
|
@@ -4911,6 +5044,7 @@ module Aws::SSM
|
|
4911
5044
|
:filters,
|
4912
5045
|
:next_token,
|
4913
5046
|
:max_results)
|
5047
|
+
SENSITIVE = []
|
4914
5048
|
include Aws::Structure
|
4915
5049
|
end
|
4916
5050
|
|
@@ -4942,6 +5076,7 @@ module Aws::SSM
|
|
4942
5076
|
class DescribeInstancePatchesResult < Struct.new(
|
4943
5077
|
:patches,
|
4944
5078
|
:next_token)
|
5079
|
+
SENSITIVE = []
|
4945
5080
|
include Aws::Structure
|
4946
5081
|
end
|
4947
5082
|
|
@@ -4976,6 +5111,7 @@ module Aws::SSM
|
|
4976
5111
|
:deletion_id,
|
4977
5112
|
:next_token,
|
4978
5113
|
:max_results)
|
5114
|
+
SENSITIVE = []
|
4979
5115
|
include Aws::Structure
|
4980
5116
|
end
|
4981
5117
|
|
@@ -4993,6 +5129,7 @@ module Aws::SSM
|
|
4993
5129
|
class DescribeInventoryDeletionsResult < Struct.new(
|
4994
5130
|
:inventory_deletions,
|
4995
5131
|
:next_token)
|
5132
|
+
SENSITIVE = []
|
4996
5133
|
include Aws::Structure
|
4997
5134
|
end
|
4998
5135
|
|
@@ -5047,6 +5184,7 @@ module Aws::SSM
|
|
5047
5184
|
:filters,
|
5048
5185
|
:max_results,
|
5049
5186
|
:next_token)
|
5187
|
+
SENSITIVE = []
|
5050
5188
|
include Aws::Structure
|
5051
5189
|
end
|
5052
5190
|
|
@@ -5064,6 +5202,7 @@ module Aws::SSM
|
|
5064
5202
|
class DescribeMaintenanceWindowExecutionTaskInvocationsResult < Struct.new(
|
5065
5203
|
:window_execution_task_invocation_identities,
|
5066
5204
|
:next_token)
|
5205
|
+
SENSITIVE = []
|
5067
5206
|
include Aws::Structure
|
5068
5207
|
end
|
5069
5208
|
|
@@ -5112,6 +5251,7 @@ module Aws::SSM
|
|
5112
5251
|
:filters,
|
5113
5252
|
:max_results,
|
5114
5253
|
:next_token)
|
5254
|
+
SENSITIVE = []
|
5115
5255
|
include Aws::Structure
|
5116
5256
|
end
|
5117
5257
|
|
@@ -5129,6 +5269,7 @@ module Aws::SSM
|
|
5129
5269
|
class DescribeMaintenanceWindowExecutionTasksResult < Struct.new(
|
5130
5270
|
:window_execution_task_identities,
|
5131
5271
|
:next_token)
|
5272
|
+
SENSITIVE = []
|
5132
5273
|
include Aws::Structure
|
5133
5274
|
end
|
5134
5275
|
|
@@ -5182,6 +5323,7 @@ module Aws::SSM
|
|
5182
5323
|
:filters,
|
5183
5324
|
:max_results,
|
5184
5325
|
:next_token)
|
5326
|
+
SENSITIVE = []
|
5185
5327
|
include Aws::Structure
|
5186
5328
|
end
|
5187
5329
|
|
@@ -5199,6 +5341,7 @@ module Aws::SSM
|
|
5199
5341
|
class DescribeMaintenanceWindowExecutionsResult < Struct.new(
|
5200
5342
|
:window_executions,
|
5201
5343
|
:next_token)
|
5344
|
+
SENSITIVE = []
|
5202
5345
|
include Aws::Structure
|
5203
5346
|
end
|
5204
5347
|
|
@@ -5263,6 +5406,7 @@ module Aws::SSM
|
|
5263
5406
|
:filters,
|
5264
5407
|
:max_results,
|
5265
5408
|
:next_token)
|
5409
|
+
SENSITIVE = []
|
5266
5410
|
include Aws::Structure
|
5267
5411
|
end
|
5268
5412
|
|
@@ -5281,6 +5425,7 @@ module Aws::SSM
|
|
5281
5425
|
class DescribeMaintenanceWindowScheduleResult < Struct.new(
|
5282
5426
|
:scheduled_window_executions,
|
5283
5427
|
:next_token)
|
5428
|
+
SENSITIVE = []
|
5284
5429
|
include Aws::Structure
|
5285
5430
|
end
|
5286
5431
|
|
@@ -5327,6 +5472,7 @@ module Aws::SSM
|
|
5327
5472
|
:filters,
|
5328
5473
|
:max_results,
|
5329
5474
|
:next_token)
|
5475
|
+
SENSITIVE = []
|
5330
5476
|
include Aws::Structure
|
5331
5477
|
end
|
5332
5478
|
|
@@ -5344,6 +5490,7 @@ module Aws::SSM
|
|
5344
5490
|
class DescribeMaintenanceWindowTargetsResult < Struct.new(
|
5345
5491
|
:targets,
|
5346
5492
|
:next_token)
|
5493
|
+
SENSITIVE = []
|
5347
5494
|
include Aws::Structure
|
5348
5495
|
end
|
5349
5496
|
|
@@ -5390,6 +5537,7 @@ module Aws::SSM
|
|
5390
5537
|
:filters,
|
5391
5538
|
:max_results,
|
5392
5539
|
:next_token)
|
5540
|
+
SENSITIVE = []
|
5393
5541
|
include Aws::Structure
|
5394
5542
|
end
|
5395
5543
|
|
@@ -5407,6 +5555,7 @@ module Aws::SSM
|
|
5407
5555
|
class DescribeMaintenanceWindowTasksResult < Struct.new(
|
5408
5556
|
:tasks,
|
5409
5557
|
:next_token)
|
5558
|
+
SENSITIVE = []
|
5410
5559
|
include Aws::Structure
|
5411
5560
|
end
|
5412
5561
|
|
@@ -5452,6 +5601,7 @@ module Aws::SSM
|
|
5452
5601
|
:resource_type,
|
5453
5602
|
:max_results,
|
5454
5603
|
:next_token)
|
5604
|
+
SENSITIVE = []
|
5455
5605
|
include Aws::Structure
|
5456
5606
|
end
|
5457
5607
|
|
@@ -5470,6 +5620,7 @@ module Aws::SSM
|
|
5470
5620
|
class DescribeMaintenanceWindowsForTargetResult < Struct.new(
|
5471
5621
|
:window_identities,
|
5472
5622
|
:next_token)
|
5623
|
+
SENSITIVE = []
|
5473
5624
|
include Aws::Structure
|
5474
5625
|
end
|
5475
5626
|
|
@@ -5510,6 +5661,7 @@ module Aws::SSM
|
|
5510
5661
|
:filters,
|
5511
5662
|
:max_results,
|
5512
5663
|
:next_token)
|
5664
|
+
SENSITIVE = []
|
5513
5665
|
include Aws::Structure
|
5514
5666
|
end
|
5515
5667
|
|
@@ -5527,6 +5679,7 @@ module Aws::SSM
|
|
5527
5679
|
class DescribeMaintenanceWindowsResult < Struct.new(
|
5528
5680
|
:window_identities,
|
5529
5681
|
:next_token)
|
5682
|
+
SENSITIVE = []
|
5530
5683
|
include Aws::Structure
|
5531
5684
|
end
|
5532
5685
|
|
@@ -5622,6 +5775,7 @@ module Aws::SSM
|
|
5622
5775
|
:ops_item_filters,
|
5623
5776
|
:max_results,
|
5624
5777
|
:next_token)
|
5778
|
+
SENSITIVE = []
|
5625
5779
|
include Aws::Structure
|
5626
5780
|
end
|
5627
5781
|
|
@@ -5639,6 +5793,7 @@ module Aws::SSM
|
|
5639
5793
|
class DescribeOpsItemsResponse < Struct.new(
|
5640
5794
|
:next_token,
|
5641
5795
|
:ops_item_summaries)
|
5796
|
+
SENSITIVE = []
|
5642
5797
|
include Aws::Structure
|
5643
5798
|
end
|
5644
5799
|
|
@@ -5689,6 +5844,7 @@ module Aws::SSM
|
|
5689
5844
|
:parameter_filters,
|
5690
5845
|
:max_results,
|
5691
5846
|
:next_token)
|
5847
|
+
SENSITIVE = []
|
5692
5848
|
include Aws::Structure
|
5693
5849
|
end
|
5694
5850
|
|
@@ -5705,6 +5861,7 @@ module Aws::SSM
|
|
5705
5861
|
class DescribeParametersResult < Struct.new(
|
5706
5862
|
:parameters,
|
5707
5863
|
:next_token)
|
5864
|
+
SENSITIVE = []
|
5708
5865
|
include Aws::Structure
|
5709
5866
|
end
|
5710
5867
|
|
@@ -5746,6 +5903,7 @@ module Aws::SSM
|
|
5746
5903
|
:filters,
|
5747
5904
|
:max_results,
|
5748
5905
|
:next_token)
|
5906
|
+
SENSITIVE = []
|
5749
5907
|
include Aws::Structure
|
5750
5908
|
end
|
5751
5909
|
|
@@ -5763,6 +5921,7 @@ module Aws::SSM
|
|
5763
5921
|
class DescribePatchBaselinesResult < Struct.new(
|
5764
5922
|
:baseline_identities,
|
5765
5923
|
:next_token)
|
5924
|
+
SENSITIVE = []
|
5766
5925
|
include Aws::Structure
|
5767
5926
|
end
|
5768
5927
|
|
@@ -5782,6 +5941,7 @@ module Aws::SSM
|
|
5782
5941
|
#
|
5783
5942
|
class DescribePatchGroupStateRequest < Struct.new(
|
5784
5943
|
:patch_group)
|
5944
|
+
SENSITIVE = []
|
5785
5945
|
include Aws::Structure
|
5786
5946
|
end
|
5787
5947
|
|
@@ -5849,6 +6009,7 @@ module Aws::SSM
|
|
5849
6009
|
:instances_with_failed_patches,
|
5850
6010
|
:instances_with_not_applicable_patches,
|
5851
6011
|
:instances_with_unreported_not_applicable_patches)
|
6012
|
+
SENSITIVE = []
|
5852
6013
|
include Aws::Structure
|
5853
6014
|
end
|
5854
6015
|
|
@@ -5873,6 +6034,22 @@ module Aws::SSM
|
|
5873
6034
|
# @!attribute [rw] filters
|
5874
6035
|
# One or more filters. Use a filter to return a more specific list of
|
5875
6036
|
# results.
|
6037
|
+
#
|
6038
|
+
# For `DescribePatchGroups`,valid filter keys include the following:
|
6039
|
+
#
|
6040
|
+
# * `NAME_PREFIX`\: The name of the patch group. Wildcards (*) are
|
6041
|
+
# accepted.
|
6042
|
+
#
|
6043
|
+
# * `OPERATING_SYSTEM`\: The supported operating system type to return
|
6044
|
+
# results for. For valid operating system values, see
|
6045
|
+
# GetDefaultPatchBaselineRequest$OperatingSystem in
|
6046
|
+
# CreatePatchBaseline.
|
6047
|
+
#
|
6048
|
+
# Examples:
|
6049
|
+
#
|
6050
|
+
# * `--filters Key=NAME_PREFIX,Values=MyPatchGroup*`
|
6051
|
+
#
|
6052
|
+
# * `--filters Key=OPERATING_SYSTEM,Values=AMAZON_LINUX_2`
|
5876
6053
|
# @return [Array<Types::PatchOrchestratorFilter>]
|
5877
6054
|
#
|
5878
6055
|
# @!attribute [rw] next_token
|
@@ -5886,6 +6063,7 @@ module Aws::SSM
|
|
5886
6063
|
:max_results,
|
5887
6064
|
:filters,
|
5888
6065
|
:next_token)
|
6066
|
+
SENSITIVE = []
|
5889
6067
|
include Aws::Structure
|
5890
6068
|
end
|
5891
6069
|
|
@@ -5908,6 +6086,7 @@ module Aws::SSM
|
|
5908
6086
|
class DescribePatchGroupsResult < Struct.new(
|
5909
6087
|
:mappings,
|
5910
6088
|
:next_token)
|
6089
|
+
SENSITIVE = []
|
5911
6090
|
include Aws::Structure
|
5912
6091
|
end
|
5913
6092
|
|
@@ -5955,6 +6134,7 @@ module Aws::SSM
|
|
5955
6134
|
:patch_set,
|
5956
6135
|
:max_results,
|
5957
6136
|
:next_token)
|
6137
|
+
SENSITIVE = []
|
5958
6138
|
include Aws::Structure
|
5959
6139
|
end
|
5960
6140
|
|
@@ -5973,6 +6153,7 @@ module Aws::SSM
|
|
5973
6153
|
class DescribePatchPropertiesResult < Struct.new(
|
5974
6154
|
:properties,
|
5975
6155
|
:next_token)
|
6156
|
+
SENSITIVE = []
|
5976
6157
|
include Aws::Structure
|
5977
6158
|
end
|
5978
6159
|
|
@@ -6019,6 +6200,7 @@ module Aws::SSM
|
|
6019
6200
|
:max_results,
|
6020
6201
|
:next_token,
|
6021
6202
|
:filters)
|
6203
|
+
SENSITIVE = []
|
6022
6204
|
include Aws::Structure
|
6023
6205
|
end
|
6024
6206
|
|
@@ -6036,6 +6218,7 @@ module Aws::SSM
|
|
6036
6218
|
class DescribeSessionsResponse < Struct.new(
|
6037
6219
|
:sessions,
|
6038
6220
|
:next_token)
|
6221
|
+
SENSITIVE = []
|
6039
6222
|
include Aws::Structure
|
6040
6223
|
end
|
6041
6224
|
|
@@ -6048,6 +6231,7 @@ module Aws::SSM
|
|
6048
6231
|
#
|
6049
6232
|
class DocumentAlreadyExists < Struct.new(
|
6050
6233
|
:message)
|
6234
|
+
SENSITIVE = []
|
6051
6235
|
include Aws::Structure
|
6052
6236
|
end
|
6053
6237
|
|
@@ -6071,6 +6255,7 @@ module Aws::SSM
|
|
6071
6255
|
:name,
|
6072
6256
|
:default_version,
|
6073
6257
|
:default_version_name)
|
6258
|
+
SENSITIVE = []
|
6074
6259
|
include Aws::Structure
|
6075
6260
|
end
|
6076
6261
|
|
@@ -6213,6 +6398,7 @@ module Aws::SSM
|
|
6213
6398
|
:tags,
|
6214
6399
|
:attachments_information,
|
6215
6400
|
:requires)
|
6401
|
+
SENSITIVE = []
|
6216
6402
|
include Aws::Structure
|
6217
6403
|
end
|
6218
6404
|
|
@@ -6239,6 +6425,7 @@ module Aws::SSM
|
|
6239
6425
|
class DocumentFilter < Struct.new(
|
6240
6426
|
:key,
|
6241
6427
|
:value)
|
6428
|
+
SENSITIVE = []
|
6242
6429
|
include Aws::Structure
|
6243
6430
|
end
|
6244
6431
|
|
@@ -6313,6 +6500,7 @@ module Aws::SSM
|
|
6313
6500
|
:target_type,
|
6314
6501
|
:tags,
|
6315
6502
|
:requires)
|
6503
|
+
SENSITIVE = []
|
6316
6504
|
include Aws::Structure
|
6317
6505
|
end
|
6318
6506
|
|
@@ -6369,6 +6557,7 @@ module Aws::SSM
|
|
6369
6557
|
class DocumentKeyValuesFilter < Struct.new(
|
6370
6558
|
:key,
|
6371
6559
|
:values)
|
6560
|
+
SENSITIVE = []
|
6372
6561
|
include Aws::Structure
|
6373
6562
|
end
|
6374
6563
|
|
@@ -6381,6 +6570,7 @@ module Aws::SSM
|
|
6381
6570
|
#
|
6382
6571
|
class DocumentLimitExceeded < Struct.new(
|
6383
6572
|
:message)
|
6573
|
+
SENSITIVE = []
|
6384
6574
|
include Aws::Structure
|
6385
6575
|
end
|
6386
6576
|
|
@@ -6413,6 +6603,7 @@ module Aws::SSM
|
|
6413
6603
|
:type,
|
6414
6604
|
:description,
|
6415
6605
|
:default_value)
|
6606
|
+
SENSITIVE = []
|
6416
6607
|
include Aws::Structure
|
6417
6608
|
end
|
6418
6609
|
|
@@ -6428,6 +6619,7 @@ module Aws::SSM
|
|
6428
6619
|
#
|
6429
6620
|
class DocumentPermissionLimit < Struct.new(
|
6430
6621
|
:message)
|
6622
|
+
SENSITIVE = []
|
6431
6623
|
include Aws::Structure
|
6432
6624
|
end
|
6433
6625
|
|
@@ -6455,6 +6647,7 @@ module Aws::SSM
|
|
6455
6647
|
class DocumentRequires < Struct.new(
|
6456
6648
|
:name,
|
6457
6649
|
:version)
|
6650
|
+
SENSITIVE = []
|
6458
6651
|
include Aws::Structure
|
6459
6652
|
end
|
6460
6653
|
|
@@ -6509,6 +6702,7 @@ module Aws::SSM
|
|
6509
6702
|
:document_format,
|
6510
6703
|
:status,
|
6511
6704
|
:status_information)
|
6705
|
+
SENSITIVE = []
|
6512
6706
|
include Aws::Structure
|
6513
6707
|
end
|
6514
6708
|
|
@@ -6522,6 +6716,7 @@ module Aws::SSM
|
|
6522
6716
|
#
|
6523
6717
|
class DocumentVersionLimitExceeded < Struct.new(
|
6524
6718
|
:message)
|
6719
|
+
SENSITIVE = []
|
6525
6720
|
include Aws::Structure
|
6526
6721
|
end
|
6527
6722
|
|
@@ -6542,6 +6737,7 @@ module Aws::SSM
|
|
6542
6737
|
#
|
6543
6738
|
class DoesNotExistException < Struct.new(
|
6544
6739
|
:message)
|
6740
|
+
SENSITIVE = []
|
6545
6741
|
include Aws::Structure
|
6546
6742
|
end
|
6547
6743
|
|
@@ -6555,6 +6751,7 @@ module Aws::SSM
|
|
6555
6751
|
#
|
6556
6752
|
class DuplicateDocumentContent < Struct.new(
|
6557
6753
|
:message)
|
6754
|
+
SENSITIVE = []
|
6558
6755
|
include Aws::Structure
|
6559
6756
|
end
|
6560
6757
|
|
@@ -6568,6 +6765,7 @@ module Aws::SSM
|
|
6568
6765
|
#
|
6569
6766
|
class DuplicateDocumentVersionName < Struct.new(
|
6570
6767
|
:message)
|
6768
|
+
SENSITIVE = []
|
6571
6769
|
include Aws::Structure
|
6572
6770
|
end
|
6573
6771
|
|
@@ -6601,6 +6799,7 @@ module Aws::SSM
|
|
6601
6799
|
class EffectivePatch < Struct.new(
|
6602
6800
|
:patch,
|
6603
6801
|
:patch_status)
|
6802
|
+
SENSITIVE = []
|
6604
6803
|
include Aws::Structure
|
6605
6804
|
end
|
6606
6805
|
|
@@ -6624,6 +6823,7 @@ module Aws::SSM
|
|
6624
6823
|
:entry,
|
6625
6824
|
:message,
|
6626
6825
|
:fault)
|
6826
|
+
SENSITIVE = []
|
6627
6827
|
include Aws::Structure
|
6628
6828
|
end
|
6629
6829
|
|
@@ -6650,6 +6850,7 @@ module Aws::SSM
|
|
6650
6850
|
:failure_stage,
|
6651
6851
|
:failure_type,
|
6652
6852
|
:details)
|
6853
|
+
SENSITIVE = []
|
6653
6854
|
include Aws::Structure
|
6654
6855
|
end
|
6655
6856
|
|
@@ -6663,6 +6864,7 @@ module Aws::SSM
|
|
6663
6864
|
#
|
6664
6865
|
class FeatureNotAvailableException < Struct.new(
|
6665
6866
|
:message)
|
6867
|
+
SENSITIVE = []
|
6666
6868
|
include Aws::Structure
|
6667
6869
|
end
|
6668
6870
|
|
@@ -6683,6 +6885,7 @@ module Aws::SSM
|
|
6683
6885
|
#
|
6684
6886
|
class GetAutomationExecutionRequest < Struct.new(
|
6685
6887
|
:automation_execution_id)
|
6888
|
+
SENSITIVE = []
|
6686
6889
|
include Aws::Structure
|
6687
6890
|
end
|
6688
6891
|
|
@@ -6695,6 +6898,7 @@ module Aws::SSM
|
|
6695
6898
|
#
|
6696
6899
|
class GetAutomationExecutionResult < Struct.new(
|
6697
6900
|
:automation_execution)
|
6901
|
+
SENSITIVE = []
|
6698
6902
|
include Aws::Structure
|
6699
6903
|
end
|
6700
6904
|
|
@@ -6727,6 +6931,7 @@ module Aws::SSM
|
|
6727
6931
|
class GetCalendarStateRequest < Struct.new(
|
6728
6932
|
:calendar_names,
|
6729
6933
|
:at_time)
|
6934
|
+
SENSITIVE = []
|
6730
6935
|
include Aws::Structure
|
6731
6936
|
end
|
6732
6937
|
|
@@ -6763,6 +6968,7 @@ module Aws::SSM
|
|
6763
6968
|
:state,
|
6764
6969
|
:at_time,
|
6765
6970
|
:next_transition_time)
|
6971
|
+
SENSITIVE = []
|
6766
6972
|
include Aws::Structure
|
6767
6973
|
end
|
6768
6974
|
|
@@ -6789,6 +6995,9 @@ module Aws::SSM
|
|
6789
6995
|
# (Optional) The name of the plugin for which you want detailed
|
6790
6996
|
# results. If the document contains only one plugin, the name can be
|
6791
6997
|
# omitted and the details will be returned.
|
6998
|
+
#
|
6999
|
+
# Plugin names are also referred to as step names in Systems Manager
|
7000
|
+
# documents.
|
6792
7001
|
# @return [String]
|
6793
7002
|
#
|
6794
7003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetCommandInvocationRequest AWS API Documentation
|
@@ -6797,6 +7006,7 @@ module Aws::SSM
|
|
6797
7006
|
:command_id,
|
6798
7007
|
:instance_id,
|
6799
7008
|
:plugin_name)
|
7009
|
+
SENSITIVE = []
|
6800
7010
|
include Aws::Structure
|
6801
7011
|
end
|
6802
7012
|
|
@@ -6973,6 +7183,7 @@ module Aws::SSM
|
|
6973
7183
|
:standard_error_content,
|
6974
7184
|
:standard_error_url,
|
6975
7185
|
:cloud_watch_output_config)
|
7186
|
+
SENSITIVE = []
|
6976
7187
|
include Aws::Structure
|
6977
7188
|
end
|
6978
7189
|
|
@@ -6991,6 +7202,7 @@ module Aws::SSM
|
|
6991
7202
|
#
|
6992
7203
|
class GetConnectionStatusRequest < Struct.new(
|
6993
7204
|
:target)
|
7205
|
+
SENSITIVE = []
|
6994
7206
|
include Aws::Structure
|
6995
7207
|
end
|
6996
7208
|
|
@@ -7008,6 +7220,7 @@ module Aws::SSM
|
|
7008
7220
|
class GetConnectionStatusResponse < Struct.new(
|
7009
7221
|
:target,
|
7010
7222
|
:status)
|
7223
|
+
SENSITIVE = []
|
7011
7224
|
include Aws::Structure
|
7012
7225
|
end
|
7013
7226
|
|
@@ -7027,6 +7240,7 @@ module Aws::SSM
|
|
7027
7240
|
#
|
7028
7241
|
class GetDefaultPatchBaselineRequest < Struct.new(
|
7029
7242
|
:operating_system)
|
7243
|
+
SENSITIVE = []
|
7030
7244
|
include Aws::Structure
|
7031
7245
|
end
|
7032
7246
|
|
@@ -7043,6 +7257,7 @@ module Aws::SSM
|
|
7043
7257
|
class GetDefaultPatchBaselineResult < Struct.new(
|
7044
7258
|
:baseline_id,
|
7045
7259
|
:operating_system)
|
7260
|
+
SENSITIVE = []
|
7046
7261
|
include Aws::Structure
|
7047
7262
|
end
|
7048
7263
|
|
@@ -7068,6 +7283,7 @@ module Aws::SSM
|
|
7068
7283
|
class GetDeployablePatchSnapshotForInstanceRequest < Struct.new(
|
7069
7284
|
:instance_id,
|
7070
7285
|
:snapshot_id)
|
7286
|
+
SENSITIVE = []
|
7071
7287
|
include Aws::Structure
|
7072
7288
|
end
|
7073
7289
|
|
@@ -7097,6 +7313,7 @@ module Aws::SSM
|
|
7097
7313
|
:snapshot_id,
|
7098
7314
|
:snapshot_download_url,
|
7099
7315
|
:product)
|
7316
|
+
SENSITIVE = []
|
7100
7317
|
include Aws::Structure
|
7101
7318
|
end
|
7102
7319
|
|
@@ -7136,6 +7353,7 @@ module Aws::SSM
|
|
7136
7353
|
:version_name,
|
7137
7354
|
:document_version,
|
7138
7355
|
:document_format)
|
7356
|
+
SENSITIVE = []
|
7139
7357
|
include Aws::Structure
|
7140
7358
|
end
|
7141
7359
|
|
@@ -7201,6 +7419,7 @@ module Aws::SSM
|
|
7201
7419
|
:document_format,
|
7202
7420
|
:requires,
|
7203
7421
|
:attachments_content)
|
7422
|
+
SENSITIVE = []
|
7204
7423
|
include Aws::Structure
|
7205
7424
|
end
|
7206
7425
|
|
@@ -7280,6 +7499,7 @@ module Aws::SSM
|
|
7280
7499
|
:result_attributes,
|
7281
7500
|
:next_token,
|
7282
7501
|
:max_results)
|
7502
|
+
SENSITIVE = []
|
7283
7503
|
include Aws::Structure
|
7284
7504
|
end
|
7285
7505
|
|
@@ -7298,6 +7518,7 @@ module Aws::SSM
|
|
7298
7518
|
class GetInventoryResult < Struct.new(
|
7299
7519
|
:entities,
|
7300
7520
|
:next_token)
|
7521
|
+
SENSITIVE = []
|
7301
7522
|
include Aws::Structure
|
7302
7523
|
end
|
7303
7524
|
|
@@ -7346,6 +7567,7 @@ module Aws::SSM
|
|
7346
7567
|
:max_results,
|
7347
7568
|
:aggregator,
|
7348
7569
|
:sub_type)
|
7570
|
+
SENSITIVE = []
|
7349
7571
|
include Aws::Structure
|
7350
7572
|
end
|
7351
7573
|
|
@@ -7363,6 +7585,7 @@ module Aws::SSM
|
|
7363
7585
|
class GetInventorySchemaResult < Struct.new(
|
7364
7586
|
:schemas,
|
7365
7587
|
:next_token)
|
7588
|
+
SENSITIVE = []
|
7366
7589
|
include Aws::Structure
|
7367
7590
|
end
|
7368
7591
|
|
@@ -7381,6 +7604,7 @@ module Aws::SSM
|
|
7381
7604
|
#
|
7382
7605
|
class GetMaintenanceWindowExecutionRequest < Struct.new(
|
7383
7606
|
:window_execution_id)
|
7607
|
+
SENSITIVE = []
|
7384
7608
|
include Aws::Structure
|
7385
7609
|
end
|
7386
7610
|
|
@@ -7418,6 +7642,7 @@ module Aws::SSM
|
|
7418
7642
|
:status_details,
|
7419
7643
|
:start_time,
|
7420
7644
|
:end_time)
|
7645
|
+
SENSITIVE = []
|
7421
7646
|
include Aws::Structure
|
7422
7647
|
end
|
7423
7648
|
|
@@ -7450,6 +7675,7 @@ module Aws::SSM
|
|
7450
7675
|
:window_execution_id,
|
7451
7676
|
:task_id,
|
7452
7677
|
:invocation_id)
|
7678
|
+
SENSITIVE = []
|
7453
7679
|
include Aws::Structure
|
7454
7680
|
end
|
7455
7681
|
|
@@ -7519,6 +7745,7 @@ module Aws::SSM
|
|
7519
7745
|
:end_time,
|
7520
7746
|
:owner_information,
|
7521
7747
|
:window_target_id)
|
7748
|
+
SENSITIVE = [:parameters, :owner_information]
|
7522
7749
|
include Aws::Structure
|
7523
7750
|
end
|
7524
7751
|
|
@@ -7544,6 +7771,7 @@ module Aws::SSM
|
|
7544
7771
|
class GetMaintenanceWindowExecutionTaskRequest < Struct.new(
|
7545
7772
|
:window_execution_id,
|
7546
7773
|
:task_id)
|
7774
|
+
SENSITIVE = []
|
7547
7775
|
include Aws::Structure
|
7548
7776
|
end
|
7549
7777
|
|
@@ -7634,6 +7862,7 @@ module Aws::SSM
|
|
7634
7862
|
:status_details,
|
7635
7863
|
:start_time,
|
7636
7864
|
:end_time)
|
7865
|
+
SENSITIVE = [:task_parameters]
|
7637
7866
|
include Aws::Structure
|
7638
7867
|
end
|
7639
7868
|
|
@@ -7653,6 +7882,7 @@ module Aws::SSM
|
|
7653
7882
|
#
|
7654
7883
|
class GetMaintenanceWindowRequest < Struct.new(
|
7655
7884
|
:window_id)
|
7885
|
+
SENSITIVE = []
|
7656
7886
|
include Aws::Structure
|
7657
7887
|
end
|
7658
7888
|
|
@@ -7697,6 +7927,11 @@ module Aws::SSM
|
|
7697
7927
|
# [1]: https://www.iana.org/time-zones
|
7698
7928
|
# @return [String]
|
7699
7929
|
#
|
7930
|
+
# @!attribute [rw] schedule_offset
|
7931
|
+
# The number of days to wait to run a maintenance window after the
|
7932
|
+
# scheduled CRON expression date and time.
|
7933
|
+
# @return [Integer]
|
7934
|
+
#
|
7700
7935
|
# @!attribute [rw] next_execution_time
|
7701
7936
|
# The next time the maintenance window will actually run, taking into
|
7702
7937
|
# account any specified times for the maintenance window to become
|
@@ -7739,6 +7974,7 @@ module Aws::SSM
|
|
7739
7974
|
:end_date,
|
7740
7975
|
:schedule,
|
7741
7976
|
:schedule_timezone,
|
7977
|
+
:schedule_offset,
|
7742
7978
|
:next_execution_time,
|
7743
7979
|
:duration,
|
7744
7980
|
:cutoff,
|
@@ -7746,6 +7982,7 @@ module Aws::SSM
|
|
7746
7982
|
:enabled,
|
7747
7983
|
:created_date,
|
7748
7984
|
:modified_date)
|
7985
|
+
SENSITIVE = [:description]
|
7749
7986
|
include Aws::Structure
|
7750
7987
|
end
|
7751
7988
|
|
@@ -7770,6 +8007,7 @@ module Aws::SSM
|
|
7770
8007
|
class GetMaintenanceWindowTaskRequest < Struct.new(
|
7771
8008
|
:window_id,
|
7772
8009
|
:window_task_id)
|
8010
|
+
SENSITIVE = []
|
7773
8011
|
include Aws::Structure
|
7774
8012
|
end
|
7775
8013
|
|
@@ -7872,6 +8110,7 @@ module Aws::SSM
|
|
7872
8110
|
:logging_info,
|
7873
8111
|
:name,
|
7874
8112
|
:description)
|
8113
|
+
SENSITIVE = [:task_parameters, :description]
|
7875
8114
|
include Aws::Structure
|
7876
8115
|
end
|
7877
8116
|
|
@@ -7890,6 +8129,7 @@ module Aws::SSM
|
|
7890
8129
|
#
|
7891
8130
|
class GetOpsItemRequest < Struct.new(
|
7892
8131
|
:ops_item_id)
|
8132
|
+
SENSITIVE = []
|
7893
8133
|
include Aws::Structure
|
7894
8134
|
end
|
7895
8135
|
|
@@ -7901,6 +8141,7 @@ module Aws::SSM
|
|
7901
8141
|
#
|
7902
8142
|
class GetOpsItemResponse < Struct.new(
|
7903
8143
|
:ops_item)
|
8144
|
+
SENSITIVE = []
|
7904
8145
|
include Aws::Structure
|
7905
8146
|
end
|
7906
8147
|
|
@@ -7982,6 +8223,7 @@ module Aws::SSM
|
|
7982
8223
|
:result_attributes,
|
7983
8224
|
:next_token,
|
7984
8225
|
:max_results)
|
8226
|
+
SENSITIVE = []
|
7985
8227
|
include Aws::Structure
|
7986
8228
|
end
|
7987
8229
|
|
@@ -7999,6 +8241,7 @@ module Aws::SSM
|
|
7999
8241
|
class GetOpsSummaryResult < Struct.new(
|
8000
8242
|
:entities,
|
8001
8243
|
:next_token)
|
8244
|
+
SENSITIVE = []
|
8002
8245
|
include Aws::Structure
|
8003
8246
|
end
|
8004
8247
|
|
@@ -8039,6 +8282,7 @@ module Aws::SSM
|
|
8039
8282
|
:with_decryption,
|
8040
8283
|
:max_results,
|
8041
8284
|
:next_token)
|
8285
|
+
SENSITIVE = []
|
8042
8286
|
include Aws::Structure
|
8043
8287
|
end
|
8044
8288
|
|
@@ -8056,6 +8300,7 @@ module Aws::SSM
|
|
8056
8300
|
class GetParameterHistoryResult < Struct.new(
|
8057
8301
|
:parameters,
|
8058
8302
|
:next_token)
|
8303
|
+
SENSITIVE = []
|
8059
8304
|
include Aws::Structure
|
8060
8305
|
end
|
8061
8306
|
|
@@ -8081,6 +8326,7 @@ module Aws::SSM
|
|
8081
8326
|
class GetParameterRequest < Struct.new(
|
8082
8327
|
:name,
|
8083
8328
|
:with_decryption)
|
8329
|
+
SENSITIVE = []
|
8084
8330
|
include Aws::Structure
|
8085
8331
|
end
|
8086
8332
|
|
@@ -8092,6 +8338,7 @@ module Aws::SSM
|
|
8092
8338
|
#
|
8093
8339
|
class GetParameterResult < Struct.new(
|
8094
8340
|
:parameter)
|
8341
|
+
SENSITIVE = []
|
8095
8342
|
include Aws::Structure
|
8096
8343
|
end
|
8097
8344
|
|
@@ -8159,6 +8406,7 @@ module Aws::SSM
|
|
8159
8406
|
:with_decryption,
|
8160
8407
|
:max_results,
|
8161
8408
|
:next_token)
|
8409
|
+
SENSITIVE = []
|
8162
8410
|
include Aws::Structure
|
8163
8411
|
end
|
8164
8412
|
|
@@ -8176,6 +8424,7 @@ module Aws::SSM
|
|
8176
8424
|
class GetParametersByPathResult < Struct.new(
|
8177
8425
|
:parameters,
|
8178
8426
|
:next_token)
|
8427
|
+
SENSITIVE = []
|
8179
8428
|
include Aws::Structure
|
8180
8429
|
end
|
8181
8430
|
|
@@ -8202,6 +8451,7 @@ module Aws::SSM
|
|
8202
8451
|
class GetParametersRequest < Struct.new(
|
8203
8452
|
:names,
|
8204
8453
|
:with_decryption)
|
8454
|
+
SENSITIVE = []
|
8205
8455
|
include Aws::Structure
|
8206
8456
|
end
|
8207
8457
|
|
@@ -8219,6 +8469,7 @@ module Aws::SSM
|
|
8219
8469
|
class GetParametersResult < Struct.new(
|
8220
8470
|
:parameters,
|
8221
8471
|
:invalid_parameters)
|
8472
|
+
SENSITIVE = []
|
8222
8473
|
include Aws::Structure
|
8223
8474
|
end
|
8224
8475
|
|
@@ -8245,6 +8496,7 @@ module Aws::SSM
|
|
8245
8496
|
class GetPatchBaselineForPatchGroupRequest < Struct.new(
|
8246
8497
|
:patch_group,
|
8247
8498
|
:operating_system)
|
8499
|
+
SENSITIVE = []
|
8248
8500
|
include Aws::Structure
|
8249
8501
|
end
|
8250
8502
|
|
@@ -8268,6 +8520,7 @@ module Aws::SSM
|
|
8268
8520
|
:baseline_id,
|
8269
8521
|
:patch_group,
|
8270
8522
|
:operating_system)
|
8523
|
+
SENSITIVE = []
|
8271
8524
|
include Aws::Structure
|
8272
8525
|
end
|
8273
8526
|
|
@@ -8286,6 +8539,7 @@ module Aws::SSM
|
|
8286
8539
|
#
|
8287
8540
|
class GetPatchBaselineRequest < Struct.new(
|
8288
8541
|
:baseline_id)
|
8542
|
+
SENSITIVE = []
|
8289
8543
|
include Aws::Structure
|
8290
8544
|
end
|
8291
8545
|
|
@@ -8375,6 +8629,7 @@ module Aws::SSM
|
|
8375
8629
|
:modified_date,
|
8376
8630
|
:description,
|
8377
8631
|
:sources)
|
8632
|
+
SENSITIVE = []
|
8378
8633
|
include Aws::Structure
|
8379
8634
|
end
|
8380
8635
|
|
@@ -8398,6 +8653,7 @@ module Aws::SSM
|
|
8398
8653
|
#
|
8399
8654
|
class GetServiceSettingRequest < Struct.new(
|
8400
8655
|
:setting_id)
|
8656
|
+
SENSITIVE = []
|
8401
8657
|
include Aws::Structure
|
8402
8658
|
end
|
8403
8659
|
|
@@ -8411,6 +8667,7 @@ module Aws::SSM
|
|
8411
8667
|
#
|
8412
8668
|
class GetServiceSettingResult < Struct.new(
|
8413
8669
|
:service_setting)
|
8670
|
+
SENSITIVE = []
|
8414
8671
|
include Aws::Structure
|
8415
8672
|
end
|
8416
8673
|
|
@@ -8436,6 +8693,7 @@ module Aws::SSM
|
|
8436
8693
|
#
|
8437
8694
|
class HierarchyLevelLimitExceededException < Struct.new(
|
8438
8695
|
:message)
|
8696
|
+
SENSITIVE = []
|
8439
8697
|
include Aws::Structure
|
8440
8698
|
end
|
8441
8699
|
|
@@ -8455,6 +8713,7 @@ module Aws::SSM
|
|
8455
8713
|
#
|
8456
8714
|
class HierarchyTypeMismatchException < Struct.new(
|
8457
8715
|
:message)
|
8716
|
+
SENSITIVE = []
|
8458
8717
|
include Aws::Structure
|
8459
8718
|
end
|
8460
8719
|
|
@@ -8469,6 +8728,7 @@ module Aws::SSM
|
|
8469
8728
|
#
|
8470
8729
|
class IdempotentParameterMismatch < Struct.new(
|
8471
8730
|
:message)
|
8731
|
+
SENSITIVE = []
|
8472
8732
|
include Aws::Structure
|
8473
8733
|
end
|
8474
8734
|
|
@@ -8483,6 +8743,7 @@ module Aws::SSM
|
|
8483
8743
|
#
|
8484
8744
|
class IncompatiblePolicyException < Struct.new(
|
8485
8745
|
:message)
|
8746
|
+
SENSITIVE = []
|
8486
8747
|
include Aws::Structure
|
8487
8748
|
end
|
8488
8749
|
|
@@ -8501,6 +8762,7 @@ module Aws::SSM
|
|
8501
8762
|
class InstanceAggregatedAssociationOverview < Struct.new(
|
8502
8763
|
:detailed_status,
|
8503
8764
|
:instance_association_status_aggregated_count)
|
8765
|
+
SENSITIVE = []
|
8504
8766
|
include Aws::Structure
|
8505
8767
|
end
|
8506
8768
|
|
@@ -8529,6 +8791,7 @@ module Aws::SSM
|
|
8529
8791
|
:instance_id,
|
8530
8792
|
:content,
|
8531
8793
|
:association_version)
|
8794
|
+
SENSITIVE = []
|
8532
8795
|
include Aws::Structure
|
8533
8796
|
end
|
8534
8797
|
|
@@ -8553,6 +8816,7 @@ module Aws::SSM
|
|
8553
8816
|
#
|
8554
8817
|
class InstanceAssociationOutputLocation < Struct.new(
|
8555
8818
|
:s3_location)
|
8819
|
+
SENSITIVE = []
|
8556
8820
|
include Aws::Structure
|
8557
8821
|
end
|
8558
8822
|
|
@@ -8568,6 +8832,7 @@ module Aws::SSM
|
|
8568
8832
|
#
|
8569
8833
|
class InstanceAssociationOutputUrl < Struct.new(
|
8570
8834
|
:s3_output_url)
|
8835
|
+
SENSITIVE = []
|
8571
8836
|
include Aws::Structure
|
8572
8837
|
end
|
8573
8838
|
|
@@ -8637,6 +8902,7 @@ module Aws::SSM
|
|
8637
8902
|
:error_code,
|
8638
8903
|
:output_url,
|
8639
8904
|
:association_name)
|
8905
|
+
SENSITIVE = []
|
8640
8906
|
include Aws::Structure
|
8641
8907
|
end
|
8642
8908
|
|
@@ -8685,8 +8951,17 @@ module Aws::SSM
|
|
8685
8951
|
#
|
8686
8952
|
# @!attribute [rw] iam_role
|
8687
8953
|
# The Amazon Identity and Access Management (IAM) role assigned to the
|
8688
|
-
# on-premises Systems Manager managed
|
8689
|
-
# return the IAM role for EC2 instances.
|
8954
|
+
# on-premises Systems Manager managed instance. This call does not
|
8955
|
+
# return the IAM role for EC2 instances. To retrieve the IAM role for
|
8956
|
+
# an EC2 instance, use the Amazon EC2 `DescribeInstances` action. For
|
8957
|
+
# information, see [DescribeInstances][1] in the *Amazon EC2 API
|
8958
|
+
# Reference* or [describe-instances][2] in the *AWS CLI Command
|
8959
|
+
# Reference*.
|
8960
|
+
#
|
8961
|
+
#
|
8962
|
+
#
|
8963
|
+
# [1]: http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html
|
8964
|
+
# [2]: http://docs.aws.amazon.com/cli/latest/reference/ec2/describe-instances.html
|
8690
8965
|
# @return [String]
|
8691
8966
|
#
|
8692
8967
|
# @!attribute [rw] registration_date
|
@@ -8700,7 +8975,25 @@ module Aws::SSM
|
|
8700
8975
|
# @return [String]
|
8701
8976
|
#
|
8702
8977
|
# @!attribute [rw] name
|
8703
|
-
# The name
|
8978
|
+
# The name assigned to an on-premises server or virtual machine (VM)
|
8979
|
+
# when it is activated as a Systems Manager managed instance. The name
|
8980
|
+
# is specified as the `DefaultInstanceName` property using the
|
8981
|
+
# CreateActivation command. It is applied to the managed instance by
|
8982
|
+
# specifying the Activation Code and Activation ID when you install
|
8983
|
+
# SSM Agent on the instance, as explained in [Install SSM Agent for a
|
8984
|
+
# hybrid environment (Linux)][1] and [Install SSM Agent for a hybrid
|
8985
|
+
# environment (Windows)][2]. To retrieve the Name tag of an EC2
|
8986
|
+
# instance, use the Amazon EC2 `DescribeInstances` action. For
|
8987
|
+
# information, see [DescribeInstances][3] in the *Amazon EC2 API
|
8988
|
+
# Reference* or [describe-instances][4] in the *AWS CLI Command
|
8989
|
+
# Reference*.
|
8990
|
+
#
|
8991
|
+
#
|
8992
|
+
#
|
8993
|
+
# [1]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-install-managed-linux.html
|
8994
|
+
# [2]: http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-install-managed-win.html
|
8995
|
+
# [3]: http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html
|
8996
|
+
# [4]: http://docs.aws.amazon.com/cli/latest/reference/ec2/describe-instances.html
|
8704
8997
|
# @return [String]
|
8705
8998
|
#
|
8706
8999
|
# @!attribute [rw] ip_address
|
@@ -8749,6 +9042,7 @@ module Aws::SSM
|
|
8749
9042
|
:last_association_execution_date,
|
8750
9043
|
:last_successful_association_execution_date,
|
8751
9044
|
:association_overview)
|
9045
|
+
SENSITIVE = []
|
8752
9046
|
include Aws::Structure
|
8753
9047
|
end
|
8754
9048
|
|
@@ -8782,6 +9076,7 @@ module Aws::SSM
|
|
8782
9076
|
class InstanceInformationFilter < Struct.new(
|
8783
9077
|
:key,
|
8784
9078
|
:value_set)
|
9079
|
+
SENSITIVE = []
|
8785
9080
|
include Aws::Structure
|
8786
9081
|
end
|
8787
9082
|
|
@@ -8812,6 +9107,7 @@ module Aws::SSM
|
|
8812
9107
|
class InstanceInformationStringFilter < Struct.new(
|
8813
9108
|
:key,
|
8814
9109
|
:values)
|
9110
|
+
SENSITIVE = []
|
8815
9111
|
include Aws::Structure
|
8816
9112
|
end
|
8817
9113
|
|
@@ -8972,6 +9268,7 @@ module Aws::SSM
|
|
8972
9268
|
:operation,
|
8973
9269
|
:last_no_reboot_install_operation_time,
|
8974
9270
|
:reboot_option)
|
9271
|
+
SENSITIVE = [:owner_information]
|
8975
9272
|
include Aws::Structure
|
8976
9273
|
end
|
8977
9274
|
|
@@ -9009,6 +9306,7 @@ module Aws::SSM
|
|
9009
9306
|
:key,
|
9010
9307
|
:values,
|
9011
9308
|
:type)
|
9309
|
+
SENSITIVE = []
|
9012
9310
|
include Aws::Structure
|
9013
9311
|
end
|
9014
9312
|
|
@@ -9021,6 +9319,7 @@ module Aws::SSM
|
|
9021
9319
|
#
|
9022
9320
|
class InternalServerError < Struct.new(
|
9023
9321
|
:message)
|
9322
|
+
SENSITIVE = []
|
9024
9323
|
include Aws::Structure
|
9025
9324
|
end
|
9026
9325
|
|
@@ -9034,6 +9333,7 @@ module Aws::SSM
|
|
9034
9333
|
#
|
9035
9334
|
class InvalidActivation < Struct.new(
|
9036
9335
|
:message)
|
9336
|
+
SENSITIVE = []
|
9037
9337
|
include Aws::Structure
|
9038
9338
|
end
|
9039
9339
|
|
@@ -9047,6 +9347,7 @@ module Aws::SSM
|
|
9047
9347
|
#
|
9048
9348
|
class InvalidActivationId < Struct.new(
|
9049
9349
|
:message)
|
9350
|
+
SENSITIVE = []
|
9050
9351
|
include Aws::Structure
|
9051
9352
|
end
|
9052
9353
|
|
@@ -9061,6 +9362,7 @@ module Aws::SSM
|
|
9061
9362
|
#
|
9062
9363
|
class InvalidAggregatorException < Struct.new(
|
9063
9364
|
:message)
|
9365
|
+
SENSITIVE = []
|
9064
9366
|
include Aws::Structure
|
9065
9367
|
end
|
9066
9368
|
|
@@ -9074,6 +9376,7 @@ module Aws::SSM
|
|
9074
9376
|
#
|
9075
9377
|
class InvalidAllowedPatternException < Struct.new(
|
9076
9378
|
:message)
|
9379
|
+
SENSITIVE = []
|
9077
9380
|
include Aws::Structure
|
9078
9381
|
end
|
9079
9382
|
|
@@ -9086,6 +9389,7 @@ module Aws::SSM
|
|
9086
9389
|
#
|
9087
9390
|
class InvalidAssociation < Struct.new(
|
9088
9391
|
:message)
|
9392
|
+
SENSITIVE = []
|
9089
9393
|
include Aws::Structure
|
9090
9394
|
end
|
9091
9395
|
|
@@ -9101,6 +9405,7 @@ module Aws::SSM
|
|
9101
9405
|
#
|
9102
9406
|
class InvalidAssociationVersion < Struct.new(
|
9103
9407
|
:message)
|
9408
|
+
SENSITIVE = []
|
9104
9409
|
include Aws::Structure
|
9105
9410
|
end
|
9106
9411
|
|
@@ -9115,6 +9420,7 @@ module Aws::SSM
|
|
9115
9420
|
#
|
9116
9421
|
class InvalidAutomationExecutionParametersException < Struct.new(
|
9117
9422
|
:message)
|
9423
|
+
SENSITIVE = []
|
9118
9424
|
include Aws::Structure
|
9119
9425
|
end
|
9120
9426
|
|
@@ -9127,6 +9433,7 @@ module Aws::SSM
|
|
9127
9433
|
#
|
9128
9434
|
class InvalidAutomationSignalException < Struct.new(
|
9129
9435
|
:message)
|
9436
|
+
SENSITIVE = []
|
9130
9437
|
include Aws::Structure
|
9131
9438
|
end
|
9132
9439
|
|
@@ -9139,6 +9446,7 @@ module Aws::SSM
|
|
9139
9446
|
#
|
9140
9447
|
class InvalidAutomationStatusUpdateException < Struct.new(
|
9141
9448
|
:message)
|
9449
|
+
SENSITIVE = []
|
9142
9450
|
include Aws::Structure
|
9143
9451
|
end
|
9144
9452
|
|
@@ -9156,6 +9464,7 @@ module Aws::SSM
|
|
9156
9464
|
#
|
9157
9465
|
class InvalidDeleteInventoryParametersException < Struct.new(
|
9158
9466
|
:message)
|
9467
|
+
SENSITIVE = []
|
9159
9468
|
include Aws::Structure
|
9160
9469
|
end
|
9161
9470
|
|
@@ -9169,6 +9478,7 @@ module Aws::SSM
|
|
9169
9478
|
#
|
9170
9479
|
class InvalidDeletionIdException < Struct.new(
|
9171
9480
|
:message)
|
9481
|
+
SENSITIVE = []
|
9172
9482
|
include Aws::Structure
|
9173
9483
|
end
|
9174
9484
|
|
@@ -9186,6 +9496,7 @@ module Aws::SSM
|
|
9186
9496
|
#
|
9187
9497
|
class InvalidDocument < Struct.new(
|
9188
9498
|
:message)
|
9499
|
+
SENSITIVE = []
|
9189
9500
|
include Aws::Structure
|
9190
9501
|
end
|
9191
9502
|
|
@@ -9199,6 +9510,7 @@ module Aws::SSM
|
|
9199
9510
|
#
|
9200
9511
|
class InvalidDocumentContent < Struct.new(
|
9201
9512
|
:message)
|
9513
|
+
SENSITIVE = []
|
9202
9514
|
include Aws::Structure
|
9203
9515
|
end
|
9204
9516
|
|
@@ -9212,6 +9524,7 @@ module Aws::SSM
|
|
9212
9524
|
#
|
9213
9525
|
class InvalidDocumentOperation < Struct.new(
|
9214
9526
|
:message)
|
9527
|
+
SENSITIVE = []
|
9215
9528
|
include Aws::Structure
|
9216
9529
|
end
|
9217
9530
|
|
@@ -9224,6 +9537,7 @@ module Aws::SSM
|
|
9224
9537
|
#
|
9225
9538
|
class InvalidDocumentSchemaVersion < Struct.new(
|
9226
9539
|
:message)
|
9540
|
+
SENSITIVE = []
|
9227
9541
|
include Aws::Structure
|
9228
9542
|
end
|
9229
9543
|
|
@@ -9237,6 +9551,7 @@ module Aws::SSM
|
|
9237
9551
|
#
|
9238
9552
|
class InvalidDocumentType < Struct.new(
|
9239
9553
|
:message)
|
9554
|
+
SENSITIVE = []
|
9240
9555
|
include Aws::Structure
|
9241
9556
|
end
|
9242
9557
|
|
@@ -9249,6 +9564,7 @@ module Aws::SSM
|
|
9249
9564
|
#
|
9250
9565
|
class InvalidDocumentVersion < Struct.new(
|
9251
9566
|
:message)
|
9567
|
+
SENSITIVE = []
|
9252
9568
|
include Aws::Structure
|
9253
9569
|
end
|
9254
9570
|
|
@@ -9262,6 +9578,7 @@ module Aws::SSM
|
|
9262
9578
|
#
|
9263
9579
|
class InvalidFilter < Struct.new(
|
9264
9580
|
:message)
|
9581
|
+
SENSITIVE = []
|
9265
9582
|
include Aws::Structure
|
9266
9583
|
end
|
9267
9584
|
|
@@ -9284,6 +9601,7 @@ module Aws::SSM
|
|
9284
9601
|
#
|
9285
9602
|
class InvalidFilterOption < Struct.new(
|
9286
9603
|
:message)
|
9604
|
+
SENSITIVE = []
|
9287
9605
|
include Aws::Structure
|
9288
9606
|
end
|
9289
9607
|
|
@@ -9296,6 +9614,7 @@ module Aws::SSM
|
|
9296
9614
|
#
|
9297
9615
|
class InvalidFilterValue < Struct.new(
|
9298
9616
|
:message)
|
9617
|
+
SENSITIVE = []
|
9299
9618
|
include Aws::Structure
|
9300
9619
|
end
|
9301
9620
|
|
@@ -9319,6 +9638,7 @@ module Aws::SSM
|
|
9319
9638
|
#
|
9320
9639
|
class InvalidInstanceId < Struct.new(
|
9321
9640
|
:message)
|
9641
|
+
SENSITIVE = []
|
9322
9642
|
include Aws::Structure
|
9323
9643
|
end
|
9324
9644
|
|
@@ -9331,6 +9651,7 @@ module Aws::SSM
|
|
9331
9651
|
#
|
9332
9652
|
class InvalidInstanceInformationFilterValue < Struct.new(
|
9333
9653
|
:message)
|
9654
|
+
SENSITIVE = []
|
9334
9655
|
include Aws::Structure
|
9335
9656
|
end
|
9336
9657
|
|
@@ -9343,6 +9664,7 @@ module Aws::SSM
|
|
9343
9664
|
#
|
9344
9665
|
class InvalidInventoryGroupException < Struct.new(
|
9345
9666
|
:message)
|
9667
|
+
SENSITIVE = []
|
9346
9668
|
include Aws::Structure
|
9347
9669
|
end
|
9348
9670
|
|
@@ -9356,6 +9678,7 @@ module Aws::SSM
|
|
9356
9678
|
#
|
9357
9679
|
class InvalidInventoryItemContextException < Struct.new(
|
9358
9680
|
:message)
|
9681
|
+
SENSITIVE = []
|
9359
9682
|
include Aws::Structure
|
9360
9683
|
end
|
9361
9684
|
|
@@ -9368,6 +9691,7 @@ module Aws::SSM
|
|
9368
9691
|
#
|
9369
9692
|
class InvalidInventoryRequestException < Struct.new(
|
9370
9693
|
:message)
|
9694
|
+
SENSITIVE = []
|
9371
9695
|
include Aws::Structure
|
9372
9696
|
end
|
9373
9697
|
|
@@ -9384,6 +9708,7 @@ module Aws::SSM
|
|
9384
9708
|
class InvalidItemContentException < Struct.new(
|
9385
9709
|
:type_name,
|
9386
9710
|
:message)
|
9711
|
+
SENSITIVE = []
|
9387
9712
|
include Aws::Structure
|
9388
9713
|
end
|
9389
9714
|
|
@@ -9396,6 +9721,7 @@ module Aws::SSM
|
|
9396
9721
|
#
|
9397
9722
|
class InvalidKeyId < Struct.new(
|
9398
9723
|
:message)
|
9724
|
+
SENSITIVE = []
|
9399
9725
|
include Aws::Structure
|
9400
9726
|
end
|
9401
9727
|
|
@@ -9408,6 +9734,7 @@ module Aws::SSM
|
|
9408
9734
|
#
|
9409
9735
|
class InvalidNextToken < Struct.new(
|
9410
9736
|
:message)
|
9737
|
+
SENSITIVE = []
|
9411
9738
|
include Aws::Structure
|
9412
9739
|
end
|
9413
9740
|
|
@@ -9421,6 +9748,7 @@ module Aws::SSM
|
|
9421
9748
|
#
|
9422
9749
|
class InvalidNotificationConfig < Struct.new(
|
9423
9750
|
:message)
|
9751
|
+
SENSITIVE = []
|
9424
9752
|
include Aws::Structure
|
9425
9753
|
end
|
9426
9754
|
|
@@ -9434,6 +9762,7 @@ module Aws::SSM
|
|
9434
9762
|
#
|
9435
9763
|
class InvalidOptionException < Struct.new(
|
9436
9764
|
:message)
|
9765
|
+
SENSITIVE = []
|
9437
9766
|
include Aws::Structure
|
9438
9767
|
end
|
9439
9768
|
|
@@ -9460,6 +9789,7 @@ module Aws::SSM
|
|
9460
9789
|
#
|
9461
9790
|
class InvalidParameters < Struct.new(
|
9462
9791
|
:message)
|
9792
|
+
SENSITIVE = []
|
9463
9793
|
include Aws::Structure
|
9464
9794
|
end
|
9465
9795
|
|
@@ -9473,6 +9803,7 @@ module Aws::SSM
|
|
9473
9803
|
#
|
9474
9804
|
class InvalidPermissionType < Struct.new(
|
9475
9805
|
:message)
|
9806
|
+
SENSITIVE = []
|
9476
9807
|
include Aws::Structure
|
9477
9808
|
end
|
9478
9809
|
|
@@ -9491,6 +9822,7 @@ module Aws::SSM
|
|
9491
9822
|
#
|
9492
9823
|
class InvalidPolicyAttributeException < Struct.new(
|
9493
9824
|
:message)
|
9825
|
+
SENSITIVE = []
|
9494
9826
|
include Aws::Structure
|
9495
9827
|
end
|
9496
9828
|
|
@@ -9505,6 +9837,7 @@ module Aws::SSM
|
|
9505
9837
|
#
|
9506
9838
|
class InvalidPolicyTypeException < Struct.new(
|
9507
9839
|
:message)
|
9840
|
+
SENSITIVE = []
|
9508
9841
|
include Aws::Structure
|
9509
9842
|
end
|
9510
9843
|
|
@@ -9531,6 +9864,7 @@ module Aws::SSM
|
|
9531
9864
|
#
|
9532
9865
|
class InvalidResultAttributeException < Struct.new(
|
9533
9866
|
:message)
|
9867
|
+
SENSITIVE = []
|
9534
9868
|
include Aws::Structure
|
9535
9869
|
end
|
9536
9870
|
|
@@ -9551,6 +9885,7 @@ module Aws::SSM
|
|
9551
9885
|
#
|
9552
9886
|
class InvalidRole < Struct.new(
|
9553
9887
|
:message)
|
9888
|
+
SENSITIVE = []
|
9554
9889
|
include Aws::Structure
|
9555
9890
|
end
|
9556
9891
|
|
@@ -9564,6 +9899,7 @@ module Aws::SSM
|
|
9564
9899
|
#
|
9565
9900
|
class InvalidSchedule < Struct.new(
|
9566
9901
|
:message)
|
9902
|
+
SENSITIVE = []
|
9567
9903
|
include Aws::Structure
|
9568
9904
|
end
|
9569
9905
|
|
@@ -9578,6 +9914,7 @@ module Aws::SSM
|
|
9578
9914
|
#
|
9579
9915
|
class InvalidTarget < Struct.new(
|
9580
9916
|
:message)
|
9917
|
+
SENSITIVE = []
|
9581
9918
|
include Aws::Structure
|
9582
9919
|
end
|
9583
9920
|
|
@@ -9590,6 +9927,7 @@ module Aws::SSM
|
|
9590
9927
|
#
|
9591
9928
|
class InvalidTypeNameException < Struct.new(
|
9592
9929
|
:message)
|
9930
|
+
SENSITIVE = []
|
9593
9931
|
include Aws::Structure
|
9594
9932
|
end
|
9595
9933
|
|
@@ -9602,6 +9940,7 @@ module Aws::SSM
|
|
9602
9940
|
#
|
9603
9941
|
class InvalidUpdate < Struct.new(
|
9604
9942
|
:message)
|
9943
|
+
SENSITIVE = []
|
9605
9944
|
include Aws::Structure
|
9606
9945
|
end
|
9607
9946
|
|
@@ -9668,6 +10007,7 @@ module Aws::SSM
|
|
9668
10007
|
:expression,
|
9669
10008
|
:aggregators,
|
9670
10009
|
:groups)
|
10010
|
+
SENSITIVE = []
|
9671
10011
|
include Aws::Structure
|
9672
10012
|
end
|
9673
10013
|
|
@@ -9718,6 +10058,7 @@ module Aws::SSM
|
|
9718
10058
|
:last_status_message,
|
9719
10059
|
:deletion_summary,
|
9720
10060
|
:last_status_update_time)
|
10061
|
+
SENSITIVE = []
|
9721
10062
|
include Aws::Structure
|
9722
10063
|
end
|
9723
10064
|
|
@@ -9742,6 +10083,7 @@ module Aws::SSM
|
|
9742
10083
|
:total_count,
|
9743
10084
|
:remaining_count,
|
9744
10085
|
:summary_items)
|
10086
|
+
SENSITIVE = []
|
9745
10087
|
include Aws::Structure
|
9746
10088
|
end
|
9747
10089
|
|
@@ -9766,6 +10108,7 @@ module Aws::SSM
|
|
9766
10108
|
:version,
|
9767
10109
|
:count,
|
9768
10110
|
:remaining_count)
|
10111
|
+
SENSITIVE = []
|
9769
10112
|
include Aws::Structure
|
9770
10113
|
end
|
9771
10114
|
|
@@ -9812,6 +10155,7 @@ module Aws::SSM
|
|
9812
10155
|
:key,
|
9813
10156
|
:values,
|
9814
10157
|
:type)
|
10158
|
+
SENSITIVE = []
|
9815
10159
|
include Aws::Structure
|
9816
10160
|
end
|
9817
10161
|
|
@@ -9849,6 +10193,7 @@ module Aws::SSM
|
|
9849
10193
|
class InventoryGroup < Struct.new(
|
9850
10194
|
:name,
|
9851
10195
|
:filters)
|
10196
|
+
SENSITIVE = []
|
9852
10197
|
include Aws::Structure
|
9853
10198
|
end
|
9854
10199
|
|
@@ -9916,6 +10261,7 @@ module Aws::SSM
|
|
9916
10261
|
:content_hash,
|
9917
10262
|
:content,
|
9918
10263
|
:context)
|
10264
|
+
SENSITIVE = []
|
9919
10265
|
include Aws::Structure
|
9920
10266
|
end
|
9921
10267
|
|
@@ -9935,6 +10281,7 @@ module Aws::SSM
|
|
9935
10281
|
class InventoryItemAttribute < Struct.new(
|
9936
10282
|
:name,
|
9937
10283
|
:data_type)
|
10284
|
+
SENSITIVE = []
|
9938
10285
|
include Aws::Structure
|
9939
10286
|
end
|
9940
10287
|
|
@@ -9970,6 +10317,7 @@ module Aws::SSM
|
|
9970
10317
|
:version,
|
9971
10318
|
:attributes,
|
9972
10319
|
:display_name)
|
10320
|
+
SENSITIVE = []
|
9973
10321
|
include Aws::Structure
|
9974
10322
|
end
|
9975
10323
|
|
@@ -9990,6 +10338,7 @@ module Aws::SSM
|
|
9990
10338
|
class InventoryResultEntity < Struct.new(
|
9991
10339
|
:id,
|
9992
10340
|
:data)
|
10341
|
+
SENSITIVE = []
|
9993
10342
|
include Aws::Structure
|
9994
10343
|
end
|
9995
10344
|
|
@@ -10027,6 +10376,7 @@ module Aws::SSM
|
|
10027
10376
|
:capture_time,
|
10028
10377
|
:content_hash,
|
10029
10378
|
:content)
|
10379
|
+
SENSITIVE = []
|
10030
10380
|
include Aws::Structure
|
10031
10381
|
end
|
10032
10382
|
|
@@ -10050,6 +10400,7 @@ module Aws::SSM
|
|
10050
10400
|
class ItemContentMismatchException < Struct.new(
|
10051
10401
|
:type_name,
|
10052
10402
|
:message)
|
10403
|
+
SENSITIVE = []
|
10053
10404
|
include Aws::Structure
|
10054
10405
|
end
|
10055
10406
|
|
@@ -10066,6 +10417,7 @@ module Aws::SSM
|
|
10066
10417
|
class ItemSizeLimitExceededException < Struct.new(
|
10067
10418
|
:type_name,
|
10068
10419
|
:message)
|
10420
|
+
SENSITIVE = []
|
10069
10421
|
include Aws::Structure
|
10070
10422
|
end
|
10071
10423
|
|
@@ -10098,6 +10450,7 @@ module Aws::SSM
|
|
10098
10450
|
:name,
|
10099
10451
|
:parameter_version,
|
10100
10452
|
:labels)
|
10453
|
+
SENSITIVE = []
|
10101
10454
|
include Aws::Structure
|
10102
10455
|
end
|
10103
10456
|
|
@@ -10120,6 +10473,7 @@ module Aws::SSM
|
|
10120
10473
|
class LabelParameterVersionResult < Struct.new(
|
10121
10474
|
:invalid_labels,
|
10122
10475
|
:parameter_version)
|
10476
|
+
SENSITIVE = []
|
10123
10477
|
include Aws::Structure
|
10124
10478
|
end
|
10125
10479
|
|
@@ -10153,6 +10507,7 @@ module Aws::SSM
|
|
10153
10507
|
:association_id,
|
10154
10508
|
:max_results,
|
10155
10509
|
:next_token)
|
10510
|
+
SENSITIVE = []
|
10156
10511
|
include Aws::Structure
|
10157
10512
|
end
|
10158
10513
|
|
@@ -10171,6 +10526,7 @@ module Aws::SSM
|
|
10171
10526
|
class ListAssociationVersionsResult < Struct.new(
|
10172
10527
|
:association_versions,
|
10173
10528
|
:next_token)
|
10529
|
+
SENSITIVE = []
|
10174
10530
|
include Aws::Structure
|
10175
10531
|
end
|
10176
10532
|
|
@@ -10210,6 +10566,7 @@ module Aws::SSM
|
|
10210
10566
|
:association_filter_list,
|
10211
10567
|
:max_results,
|
10212
10568
|
:next_token)
|
10569
|
+
SENSITIVE = []
|
10213
10570
|
include Aws::Structure
|
10214
10571
|
end
|
10215
10572
|
|
@@ -10227,6 +10584,7 @@ module Aws::SSM
|
|
10227
10584
|
class ListAssociationsResult < Struct.new(
|
10228
10585
|
:associations,
|
10229
10586
|
:next_token)
|
10587
|
+
SENSITIVE = []
|
10230
10588
|
include Aws::Structure
|
10231
10589
|
end
|
10232
10590
|
|
@@ -10285,6 +10643,7 @@ module Aws::SSM
|
|
10285
10643
|
:next_token,
|
10286
10644
|
:filters,
|
10287
10645
|
:details)
|
10646
|
+
SENSITIVE = []
|
10288
10647
|
include Aws::Structure
|
10289
10648
|
end
|
10290
10649
|
|
@@ -10302,6 +10661,7 @@ module Aws::SSM
|
|
10302
10661
|
class ListCommandInvocationsResult < Struct.new(
|
10303
10662
|
:command_invocations,
|
10304
10663
|
:next_token)
|
10664
|
+
SENSITIVE = []
|
10305
10665
|
include Aws::Structure
|
10306
10666
|
end
|
10307
10667
|
|
@@ -10327,6 +10687,12 @@ module Aws::SSM
|
|
10327
10687
|
#
|
10328
10688
|
# @!attribute [rw] instance_id
|
10329
10689
|
# (Optional) Lists commands issued against this instance ID.
|
10690
|
+
#
|
10691
|
+
# <note markdown="1"> You can't specify an instance ID in the same command that you
|
10692
|
+
# specify `Status` = `Pending`. This is because the command has not
|
10693
|
+
# reached the instance yet.
|
10694
|
+
#
|
10695
|
+
# </note>
|
10330
10696
|
# @return [String]
|
10331
10697
|
#
|
10332
10698
|
# @!attribute [rw] max_results
|
@@ -10353,6 +10719,7 @@ module Aws::SSM
|
|
10353
10719
|
:max_results,
|
10354
10720
|
:next_token,
|
10355
10721
|
:filters)
|
10722
|
+
SENSITIVE = []
|
10356
10723
|
include Aws::Structure
|
10357
10724
|
end
|
10358
10725
|
|
@@ -10370,6 +10737,7 @@ module Aws::SSM
|
|
10370
10737
|
class ListCommandsResult < Struct.new(
|
10371
10738
|
:commands,
|
10372
10739
|
:next_token)
|
10740
|
+
SENSITIVE = []
|
10373
10741
|
include Aws::Structure
|
10374
10742
|
end
|
10375
10743
|
|
@@ -10424,6 +10792,7 @@ module Aws::SSM
|
|
10424
10792
|
:resource_types,
|
10425
10793
|
:next_token,
|
10426
10794
|
:max_results)
|
10795
|
+
SENSITIVE = []
|
10427
10796
|
include Aws::Structure
|
10428
10797
|
end
|
10429
10798
|
|
@@ -10441,6 +10810,7 @@ module Aws::SSM
|
|
10441
10810
|
class ListComplianceItemsResult < Struct.new(
|
10442
10811
|
:compliance_items,
|
10443
10812
|
:next_token)
|
10813
|
+
SENSITIVE = []
|
10444
10814
|
include Aws::Structure
|
10445
10815
|
end
|
10446
10816
|
|
@@ -10481,6 +10851,7 @@ module Aws::SSM
|
|
10481
10851
|
:filters,
|
10482
10852
|
:next_token,
|
10483
10853
|
:max_results)
|
10854
|
+
SENSITIVE = []
|
10484
10855
|
include Aws::Structure
|
10485
10856
|
end
|
10486
10857
|
|
@@ -10501,6 +10872,7 @@ module Aws::SSM
|
|
10501
10872
|
class ListComplianceSummariesResult < Struct.new(
|
10502
10873
|
:compliance_summary_items,
|
10503
10874
|
:next_token)
|
10875
|
+
SENSITIVE = []
|
10504
10876
|
include Aws::Structure
|
10505
10877
|
end
|
10506
10878
|
|
@@ -10535,6 +10907,7 @@ module Aws::SSM
|
|
10535
10907
|
:name,
|
10536
10908
|
:max_results,
|
10537
10909
|
:next_token)
|
10910
|
+
SENSITIVE = []
|
10538
10911
|
include Aws::Structure
|
10539
10912
|
end
|
10540
10913
|
|
@@ -10552,6 +10925,7 @@ module Aws::SSM
|
|
10552
10925
|
class ListDocumentVersionsResult < Struct.new(
|
10553
10926
|
:document_versions,
|
10554
10927
|
:next_token)
|
10928
|
+
SENSITIVE = []
|
10555
10929
|
include Aws::Structure
|
10556
10930
|
end
|
10557
10931
|
|
@@ -10607,6 +10981,7 @@ module Aws::SSM
|
|
10607
10981
|
:filters,
|
10608
10982
|
:max_results,
|
10609
10983
|
:next_token)
|
10984
|
+
SENSITIVE = []
|
10610
10985
|
include Aws::Structure
|
10611
10986
|
end
|
10612
10987
|
|
@@ -10624,6 +10999,7 @@ module Aws::SSM
|
|
10624
10999
|
class ListDocumentsResult < Struct.new(
|
10625
11000
|
:document_identifiers,
|
10626
11001
|
:next_token)
|
11002
|
+
SENSITIVE = []
|
10627
11003
|
include Aws::Structure
|
10628
11004
|
end
|
10629
11005
|
|
@@ -10676,6 +11052,7 @@ module Aws::SSM
|
|
10676
11052
|
:filters,
|
10677
11053
|
:next_token,
|
10678
11054
|
:max_results)
|
11055
|
+
SENSITIVE = []
|
10679
11056
|
include Aws::Structure
|
10680
11057
|
end
|
10681
11058
|
|
@@ -10715,6 +11092,7 @@ module Aws::SSM
|
|
10715
11092
|
:capture_time,
|
10716
11093
|
:entries,
|
10717
11094
|
:next_token)
|
11095
|
+
SENSITIVE = []
|
10718
11096
|
include Aws::Structure
|
10719
11097
|
end
|
10720
11098
|
|
@@ -10755,6 +11133,7 @@ module Aws::SSM
|
|
10755
11133
|
:filters,
|
10756
11134
|
:next_token,
|
10757
11135
|
:max_results)
|
11136
|
+
SENSITIVE = []
|
10758
11137
|
include Aws::Structure
|
10759
11138
|
end
|
10760
11139
|
|
@@ -10775,6 +11154,7 @@ module Aws::SSM
|
|
10775
11154
|
class ListResourceComplianceSummariesResult < Struct.new(
|
10776
11155
|
:resource_compliance_summary_items,
|
10777
11156
|
:next_token)
|
11157
|
+
SENSITIVE = []
|
10778
11158
|
include Aws::Structure
|
10779
11159
|
end
|
10780
11160
|
|
@@ -10812,6 +11192,7 @@ module Aws::SSM
|
|
10812
11192
|
:sync_type,
|
10813
11193
|
:next_token,
|
10814
11194
|
:max_results)
|
11195
|
+
SENSITIVE = []
|
10815
11196
|
include Aws::Structure
|
10816
11197
|
end
|
10817
11198
|
|
@@ -10830,6 +11211,7 @@ module Aws::SSM
|
|
10830
11211
|
class ListResourceDataSyncResult < Struct.new(
|
10831
11212
|
:resource_data_sync_items,
|
10832
11213
|
:next_token)
|
11214
|
+
SENSITIVE = []
|
10833
11215
|
include Aws::Structure
|
10834
11216
|
end
|
10835
11217
|
|
@@ -10854,6 +11236,7 @@ module Aws::SSM
|
|
10854
11236
|
class ListTagsForResourceRequest < Struct.new(
|
10855
11237
|
:resource_type,
|
10856
11238
|
:resource_id)
|
11239
|
+
SENSITIVE = []
|
10857
11240
|
include Aws::Structure
|
10858
11241
|
end
|
10859
11242
|
|
@@ -10865,6 +11248,7 @@ module Aws::SSM
|
|
10865
11248
|
#
|
10866
11249
|
class ListTagsForResourceResult < Struct.new(
|
10867
11250
|
:tag_list)
|
11251
|
+
SENSITIVE = []
|
10868
11252
|
include Aws::Structure
|
10869
11253
|
end
|
10870
11254
|
|
@@ -10906,6 +11290,7 @@ module Aws::SSM
|
|
10906
11290
|
:s3_bucket_name,
|
10907
11291
|
:s3_key_prefix,
|
10908
11292
|
:s3_region)
|
11293
|
+
SENSITIVE = []
|
10909
11294
|
include Aws::Structure
|
10910
11295
|
end
|
10911
11296
|
|
@@ -10955,6 +11340,7 @@ module Aws::SSM
|
|
10955
11340
|
class MaintenanceWindowAutomationParameters < Struct.new(
|
10956
11341
|
:document_version,
|
10957
11342
|
:parameters)
|
11343
|
+
SENSITIVE = []
|
10958
11344
|
include Aws::Structure
|
10959
11345
|
end
|
10960
11346
|
|
@@ -10994,6 +11380,7 @@ module Aws::SSM
|
|
10994
11380
|
:status_details,
|
10995
11381
|
:start_time,
|
10996
11382
|
:end_time)
|
11383
|
+
SENSITIVE = []
|
10997
11384
|
include Aws::Structure
|
10998
11385
|
end
|
10999
11386
|
|
@@ -11045,6 +11432,7 @@ module Aws::SSM
|
|
11045
11432
|
:end_time,
|
11046
11433
|
:task_arn,
|
11047
11434
|
:task_type)
|
11435
|
+
SENSITIVE = []
|
11048
11436
|
include Aws::Structure
|
11049
11437
|
end
|
11050
11438
|
|
@@ -11123,6 +11511,7 @@ module Aws::SSM
|
|
11123
11511
|
:end_time,
|
11124
11512
|
:owner_information,
|
11125
11513
|
:window_target_id)
|
11514
|
+
SENSITIVE = [:parameters, :owner_information]
|
11126
11515
|
include Aws::Structure
|
11127
11516
|
end
|
11128
11517
|
|
@@ -11150,6 +11539,7 @@ module Aws::SSM
|
|
11150
11539
|
class MaintenanceWindowFilter < Struct.new(
|
11151
11540
|
:key,
|
11152
11541
|
:values)
|
11542
|
+
SENSITIVE = []
|
11153
11543
|
include Aws::Structure
|
11154
11544
|
end
|
11155
11545
|
|
@@ -11190,6 +11580,11 @@ module Aws::SSM
|
|
11190
11580
|
# based on, in Internet Assigned Numbers Authority (IANA) format.
|
11191
11581
|
# @return [String]
|
11192
11582
|
#
|
11583
|
+
# @!attribute [rw] schedule_offset
|
11584
|
+
# The number of days to wait to run a maintenance window after the
|
11585
|
+
# scheduled CRON expression date and time.
|
11586
|
+
# @return [Integer]
|
11587
|
+
#
|
11193
11588
|
# @!attribute [rw] end_date
|
11194
11589
|
# The date and time, in ISO-8601 Extended format, for when the
|
11195
11590
|
# maintenance window is scheduled to become inactive.
|
@@ -11217,9 +11612,11 @@ module Aws::SSM
|
|
11217
11612
|
:cutoff,
|
11218
11613
|
:schedule,
|
11219
11614
|
:schedule_timezone,
|
11615
|
+
:schedule_offset,
|
11220
11616
|
:end_date,
|
11221
11617
|
:start_date,
|
11222
11618
|
:next_execution_time)
|
11619
|
+
SENSITIVE = [:description]
|
11223
11620
|
include Aws::Structure
|
11224
11621
|
end
|
11225
11622
|
|
@@ -11238,6 +11635,7 @@ module Aws::SSM
|
|
11238
11635
|
class MaintenanceWindowIdentityForTarget < Struct.new(
|
11239
11636
|
:window_id,
|
11240
11637
|
:name)
|
11638
|
+
SENSITIVE = []
|
11241
11639
|
include Aws::Structure
|
11242
11640
|
end
|
11243
11641
|
|
@@ -11297,6 +11695,7 @@ module Aws::SSM
|
|
11297
11695
|
:client_context,
|
11298
11696
|
:qualifier,
|
11299
11697
|
:payload)
|
11698
|
+
SENSITIVE = [:payload]
|
11300
11699
|
include Aws::Structure
|
11301
11700
|
end
|
11302
11701
|
|
@@ -11423,6 +11822,7 @@ module Aws::SSM
|
|
11423
11822
|
:parameters,
|
11424
11823
|
:service_role_arn,
|
11425
11824
|
:timeout_seconds)
|
11825
|
+
SENSITIVE = []
|
11426
11826
|
include Aws::Structure
|
11427
11827
|
end
|
11428
11828
|
|
@@ -11470,6 +11870,7 @@ module Aws::SSM
|
|
11470
11870
|
class MaintenanceWindowStepFunctionsParameters < Struct.new(
|
11471
11871
|
:input,
|
11472
11872
|
:name)
|
11873
|
+
SENSITIVE = [:input]
|
11473
11874
|
include Aws::Structure
|
11474
11875
|
end
|
11475
11876
|
|
@@ -11524,6 +11925,7 @@ module Aws::SSM
|
|
11524
11925
|
:owner_information,
|
11525
11926
|
:name,
|
11526
11927
|
:description)
|
11928
|
+
SENSITIVE = [:owner_information, :description]
|
11527
11929
|
include Aws::Structure
|
11528
11930
|
end
|
11529
11931
|
|
@@ -11626,6 +12028,7 @@ module Aws::SSM
|
|
11626
12028
|
:max_errors,
|
11627
12029
|
:name,
|
11628
12030
|
:description)
|
12031
|
+
SENSITIVE = [:task_parameters, :description]
|
11629
12032
|
include Aws::Structure
|
11630
12033
|
end
|
11631
12034
|
|
@@ -11697,6 +12100,7 @@ module Aws::SSM
|
|
11697
12100
|
:automation,
|
11698
12101
|
:step_functions,
|
11699
12102
|
:lambda)
|
12103
|
+
SENSITIVE = []
|
11700
12104
|
include Aws::Structure
|
11701
12105
|
end
|
11702
12106
|
|
@@ -11718,6 +12122,7 @@ module Aws::SSM
|
|
11718
12122
|
#
|
11719
12123
|
class MaintenanceWindowTaskParameterValueExpression < Struct.new(
|
11720
12124
|
:values)
|
12125
|
+
SENSITIVE = [:values]
|
11721
12126
|
include Aws::Structure
|
11722
12127
|
end
|
11723
12128
|
|
@@ -11730,6 +12135,7 @@ module Aws::SSM
|
|
11730
12135
|
#
|
11731
12136
|
class MaxDocumentSizeExceeded < Struct.new(
|
11732
12137
|
:message)
|
12138
|
+
SENSITIVE = []
|
11733
12139
|
include Aws::Structure
|
11734
12140
|
end
|
11735
12141
|
|
@@ -11779,6 +12185,7 @@ module Aws::SSM
|
|
11779
12185
|
:account_ids_to_add,
|
11780
12186
|
:account_ids_to_remove,
|
11781
12187
|
:shared_document_version)
|
12188
|
+
SENSITIVE = []
|
11782
12189
|
include Aws::Structure
|
11783
12190
|
end
|
11784
12191
|
|
@@ -11802,6 +12209,7 @@ module Aws::SSM
|
|
11802
12209
|
class NonCompliantSummary < Struct.new(
|
11803
12210
|
:non_compliant_count,
|
11804
12211
|
:severity_summary)
|
12212
|
+
SENSITIVE = []
|
11805
12213
|
include Aws::Structure
|
11806
12214
|
end
|
11807
12215
|
|
@@ -11847,6 +12255,7 @@ module Aws::SSM
|
|
11847
12255
|
:notification_arn,
|
11848
12256
|
:notification_events,
|
11849
12257
|
:notification_type)
|
12258
|
+
SENSITIVE = []
|
11850
12259
|
include Aws::Structure
|
11851
12260
|
end
|
11852
12261
|
|
@@ -11927,6 +12336,7 @@ module Aws::SSM
|
|
11927
12336
|
:values,
|
11928
12337
|
:filters,
|
11929
12338
|
:aggregators)
|
12339
|
+
SENSITIVE = []
|
11930
12340
|
include Aws::Structure
|
11931
12341
|
end
|
11932
12342
|
|
@@ -11945,6 +12355,7 @@ module Aws::SSM
|
|
11945
12355
|
class OpsEntity < Struct.new(
|
11946
12356
|
:id,
|
11947
12357
|
:data)
|
12358
|
+
SENSITIVE = []
|
11948
12359
|
include Aws::Structure
|
11949
12360
|
end
|
11950
12361
|
|
@@ -11963,6 +12374,7 @@ module Aws::SSM
|
|
11963
12374
|
class OpsEntityItem < Struct.new(
|
11964
12375
|
:capture_time,
|
11965
12376
|
:content)
|
12377
|
+
SENSITIVE = []
|
11966
12378
|
include Aws::Structure
|
11967
12379
|
end
|
11968
12380
|
|
@@ -11995,6 +12407,7 @@ module Aws::SSM
|
|
11995
12407
|
:key,
|
11996
12408
|
:values,
|
11997
12409
|
:type)
|
12410
|
+
SENSITIVE = []
|
11998
12411
|
include Aws::Structure
|
11999
12412
|
end
|
12000
12413
|
|
@@ -12132,6 +12545,7 @@ module Aws::SSM
|
|
12132
12545
|
:operational_data,
|
12133
12546
|
:category,
|
12134
12547
|
:severity)
|
12548
|
+
SENSITIVE = []
|
12135
12549
|
include Aws::Structure
|
12136
12550
|
end
|
12137
12551
|
|
@@ -12148,6 +12562,7 @@ module Aws::SSM
|
|
12148
12562
|
class OpsItemAlreadyExistsException < Struct.new(
|
12149
12563
|
:message,
|
12150
12564
|
:ops_item_id)
|
12565
|
+
SENSITIVE = []
|
12151
12566
|
include Aws::Structure
|
12152
12567
|
end
|
12153
12568
|
|
@@ -12176,6 +12591,7 @@ module Aws::SSM
|
|
12176
12591
|
class OpsItemDataValue < Struct.new(
|
12177
12592
|
:value,
|
12178
12593
|
:type)
|
12594
|
+
SENSITIVE = []
|
12179
12595
|
include Aws::Structure
|
12180
12596
|
end
|
12181
12597
|
|
@@ -12208,6 +12624,7 @@ module Aws::SSM
|
|
12208
12624
|
:key,
|
12209
12625
|
:values,
|
12210
12626
|
:operator)
|
12627
|
+
SENSITIVE = []
|
12211
12628
|
include Aws::Structure
|
12212
12629
|
end
|
12213
12630
|
|
@@ -12225,6 +12642,7 @@ module Aws::SSM
|
|
12225
12642
|
class OpsItemInvalidParameterException < Struct.new(
|
12226
12643
|
:parameter_names,
|
12227
12644
|
:message)
|
12645
|
+
SENSITIVE = []
|
12228
12646
|
include Aws::Structure
|
12229
12647
|
end
|
12230
12648
|
|
@@ -12255,6 +12673,7 @@ module Aws::SSM
|
|
12255
12673
|
:limit,
|
12256
12674
|
:limit_type,
|
12257
12675
|
:message)
|
12676
|
+
SENSITIVE = []
|
12258
12677
|
include Aws::Structure
|
12259
12678
|
end
|
12260
12679
|
|
@@ -12267,6 +12686,7 @@ module Aws::SSM
|
|
12267
12686
|
#
|
12268
12687
|
class OpsItemNotFoundException < Struct.new(
|
12269
12688
|
:message)
|
12689
|
+
SENSITIVE = []
|
12270
12690
|
include Aws::Structure
|
12271
12691
|
end
|
12272
12692
|
|
@@ -12288,6 +12708,7 @@ module Aws::SSM
|
|
12288
12708
|
#
|
12289
12709
|
class OpsItemNotification < Struct.new(
|
12290
12710
|
:arn)
|
12711
|
+
SENSITIVE = []
|
12291
12712
|
include Aws::Structure
|
12292
12713
|
end
|
12293
12714
|
|
@@ -12362,6 +12783,7 @@ module Aws::SSM
|
|
12362
12783
|
:operational_data,
|
12363
12784
|
:category,
|
12364
12785
|
:severity)
|
12786
|
+
SENSITIVE = []
|
12365
12787
|
include Aws::Structure
|
12366
12788
|
end
|
12367
12789
|
|
@@ -12384,6 +12806,7 @@ module Aws::SSM
|
|
12384
12806
|
#
|
12385
12807
|
class OpsResultAttribute < Struct.new(
|
12386
12808
|
:type_name)
|
12809
|
+
SENSITIVE = []
|
12387
12810
|
include Aws::Structure
|
12388
12811
|
end
|
12389
12812
|
|
@@ -12404,6 +12827,7 @@ module Aws::SSM
|
|
12404
12827
|
class OutputSource < Struct.new(
|
12405
12828
|
:output_source_id,
|
12406
12829
|
:output_source_type)
|
12830
|
+
SENSITIVE = []
|
12407
12831
|
include Aws::Structure
|
12408
12832
|
end
|
12409
12833
|
|
@@ -12468,6 +12892,7 @@ module Aws::SSM
|
|
12468
12892
|
:last_modified_date,
|
12469
12893
|
:arn,
|
12470
12894
|
:data_type)
|
12895
|
+
SENSITIVE = []
|
12471
12896
|
include Aws::Structure
|
12472
12897
|
end
|
12473
12898
|
|
@@ -12480,6 +12905,7 @@ module Aws::SSM
|
|
12480
12905
|
#
|
12481
12906
|
class ParameterAlreadyExists < Struct.new(
|
12482
12907
|
:message)
|
12908
|
+
SENSITIVE = []
|
12483
12909
|
include Aws::Structure
|
12484
12910
|
end
|
12485
12911
|
|
@@ -12564,6 +12990,7 @@ module Aws::SSM
|
|
12564
12990
|
:tier,
|
12565
12991
|
:policies,
|
12566
12992
|
:data_type)
|
12993
|
+
SENSITIVE = []
|
12567
12994
|
include Aws::Structure
|
12568
12995
|
end
|
12569
12996
|
|
@@ -12591,6 +13018,7 @@ module Aws::SSM
|
|
12591
13018
|
:policy_text,
|
12592
13019
|
:policy_type,
|
12593
13020
|
:policy_status)
|
13021
|
+
SENSITIVE = []
|
12594
13022
|
include Aws::Structure
|
12595
13023
|
end
|
12596
13024
|
|
@@ -12604,6 +13032,7 @@ module Aws::SSM
|
|
12604
13032
|
#
|
12605
13033
|
class ParameterLimitExceeded < Struct.new(
|
12606
13034
|
:message)
|
13035
|
+
SENSITIVE = []
|
12607
13036
|
include Aws::Structure
|
12608
13037
|
end
|
12609
13038
|
|
@@ -12616,6 +13045,7 @@ module Aws::SSM
|
|
12616
13045
|
#
|
12617
13046
|
class ParameterMaxVersionLimitExceeded < Struct.new(
|
12618
13047
|
:message)
|
13048
|
+
SENSITIVE = []
|
12619
13049
|
include Aws::Structure
|
12620
13050
|
end
|
12621
13051
|
|
@@ -12685,6 +13115,7 @@ module Aws::SSM
|
|
12685
13115
|
:tier,
|
12686
13116
|
:policies,
|
12687
13117
|
:data_type)
|
13118
|
+
SENSITIVE = []
|
12688
13119
|
include Aws::Structure
|
12689
13120
|
end
|
12690
13121
|
|
@@ -12697,6 +13128,7 @@ module Aws::SSM
|
|
12697
13128
|
#
|
12698
13129
|
class ParameterNotFound < Struct.new(
|
12699
13130
|
:message)
|
13131
|
+
SENSITIVE = []
|
12700
13132
|
include Aws::Structure
|
12701
13133
|
end
|
12702
13134
|
|
@@ -12710,6 +13142,7 @@ module Aws::SSM
|
|
12710
13142
|
#
|
12711
13143
|
class ParameterPatternMismatchException < Struct.new(
|
12712
13144
|
:message)
|
13145
|
+
SENSITIVE = []
|
12713
13146
|
include Aws::Structure
|
12714
13147
|
end
|
12715
13148
|
|
@@ -12769,6 +13202,7 @@ module Aws::SSM
|
|
12769
13202
|
:key,
|
12770
13203
|
:option,
|
12771
13204
|
:values)
|
13205
|
+
SENSITIVE = []
|
12772
13206
|
include Aws::Structure
|
12773
13207
|
end
|
12774
13208
|
|
@@ -12781,6 +13215,7 @@ module Aws::SSM
|
|
12781
13215
|
#
|
12782
13216
|
class ParameterVersionLabelLimitExceeded < Struct.new(
|
12783
13217
|
:message)
|
13218
|
+
SENSITIVE = []
|
12784
13219
|
include Aws::Structure
|
12785
13220
|
end
|
12786
13221
|
|
@@ -12794,6 +13229,7 @@ module Aws::SSM
|
|
12794
13229
|
#
|
12795
13230
|
class ParameterVersionNotFound < Struct.new(
|
12796
13231
|
:message)
|
13232
|
+
SENSITIVE = []
|
12797
13233
|
include Aws::Structure
|
12798
13234
|
end
|
12799
13235
|
|
@@ -12820,6 +13256,7 @@ module Aws::SSM
|
|
12820
13256
|
class ParametersFilter < Struct.new(
|
12821
13257
|
:key,
|
12822
13258
|
:values)
|
13259
|
+
SENSITIVE = []
|
12823
13260
|
include Aws::Structure
|
12824
13261
|
end
|
12825
13262
|
|
@@ -12898,6 +13335,7 @@ module Aws::SSM
|
|
12898
13335
|
:kb_number,
|
12899
13336
|
:msrc_number,
|
12900
13337
|
:language)
|
13338
|
+
SENSITIVE = []
|
12901
13339
|
include Aws::Structure
|
12902
13340
|
end
|
12903
13341
|
|
@@ -12934,6 +13372,7 @@ module Aws::SSM
|
|
12934
13372
|
:operating_system,
|
12935
13373
|
:baseline_description,
|
12936
13374
|
:default_baseline)
|
13375
|
+
SENSITIVE = []
|
12937
13376
|
include Aws::Structure
|
12938
13377
|
end
|
12939
13378
|
|
@@ -12983,6 +13422,7 @@ module Aws::SSM
|
|
12983
13422
|
:severity,
|
12984
13423
|
:state,
|
12985
13424
|
:installed_time)
|
13425
|
+
SENSITIVE = []
|
12986
13426
|
include Aws::Structure
|
12987
13427
|
end
|
12988
13428
|
|
@@ -13031,6 +13471,7 @@ module Aws::SSM
|
|
13031
13471
|
class PatchFilter < Struct.new(
|
13032
13472
|
:key,
|
13033
13473
|
:values)
|
13474
|
+
SENSITIVE = []
|
13034
13475
|
include Aws::Structure
|
13035
13476
|
end
|
13036
13477
|
|
@@ -13056,6 +13497,7 @@ module Aws::SSM
|
|
13056
13497
|
#
|
13057
13498
|
class PatchFilterGroup < Struct.new(
|
13058
13499
|
:patch_filters)
|
13500
|
+
SENSITIVE = []
|
13059
13501
|
include Aws::Structure
|
13060
13502
|
end
|
13061
13503
|
|
@@ -13075,6 +13517,7 @@ module Aws::SSM
|
|
13075
13517
|
class PatchGroupPatchBaselineMapping < Struct.new(
|
13076
13518
|
:patch_group,
|
13077
13519
|
:baseline_identity)
|
13520
|
+
SENSITIVE = []
|
13078
13521
|
include Aws::Structure
|
13079
13522
|
end
|
13080
13523
|
|
@@ -13101,6 +13544,7 @@ module Aws::SSM
|
|
13101
13544
|
class PatchOrchestratorFilter < Struct.new(
|
13102
13545
|
:key,
|
13103
13546
|
:values)
|
13547
|
+
SENSITIVE = []
|
13104
13548
|
include Aws::Structure
|
13105
13549
|
end
|
13106
13550
|
|
@@ -13163,6 +13607,7 @@ module Aws::SSM
|
|
13163
13607
|
:approve_after_days,
|
13164
13608
|
:approve_until_date,
|
13165
13609
|
:enable_non_security)
|
13610
|
+
SENSITIVE = []
|
13166
13611
|
include Aws::Structure
|
13167
13612
|
end
|
13168
13613
|
|
@@ -13198,6 +13643,7 @@ module Aws::SSM
|
|
13198
13643
|
#
|
13199
13644
|
class PatchRuleGroup < Struct.new(
|
13200
13645
|
:patch_rules)
|
13646
|
+
SENSITIVE = []
|
13201
13647
|
include Aws::Structure
|
13202
13648
|
end
|
13203
13649
|
|
@@ -13243,6 +13689,7 @@ module Aws::SSM
|
|
13243
13689
|
:name,
|
13244
13690
|
:products,
|
13245
13691
|
:configuration)
|
13692
|
+
SENSITIVE = [:configuration]
|
13246
13693
|
include Aws::Structure
|
13247
13694
|
end
|
13248
13695
|
|
@@ -13268,6 +13715,7 @@ module Aws::SSM
|
|
13268
13715
|
:deployment_status,
|
13269
13716
|
:compliance_level,
|
13270
13717
|
:approval_date)
|
13718
|
+
SENSITIVE = []
|
13271
13719
|
include Aws::Structure
|
13272
13720
|
end
|
13273
13721
|
|
@@ -13281,6 +13729,7 @@ module Aws::SSM
|
|
13281
13729
|
#
|
13282
13730
|
class PoliciesLimitExceededException < Struct.new(
|
13283
13731
|
:message)
|
13732
|
+
SENSITIVE = []
|
13284
13733
|
include Aws::Structure
|
13285
13734
|
end
|
13286
13735
|
|
@@ -13321,6 +13770,7 @@ module Aws::SSM
|
|
13321
13770
|
:failed_steps,
|
13322
13771
|
:cancelled_steps,
|
13323
13772
|
:timed_out_steps)
|
13773
|
+
SENSITIVE = []
|
13324
13774
|
include Aws::Structure
|
13325
13775
|
end
|
13326
13776
|
|
@@ -13412,6 +13862,7 @@ module Aws::SSM
|
|
13412
13862
|
:items,
|
13413
13863
|
:item_content_hash,
|
13414
13864
|
:upload_type)
|
13865
|
+
SENSITIVE = []
|
13415
13866
|
include Aws::Structure
|
13416
13867
|
end
|
13417
13868
|
|
@@ -13455,6 +13906,7 @@ module Aws::SSM
|
|
13455
13906
|
class PutInventoryRequest < Struct.new(
|
13456
13907
|
:instance_id,
|
13457
13908
|
:items)
|
13909
|
+
SENSITIVE = []
|
13458
13910
|
include Aws::Structure
|
13459
13911
|
end
|
13460
13912
|
|
@@ -13466,6 +13918,7 @@ module Aws::SSM
|
|
13466
13918
|
#
|
13467
13919
|
class PutInventoryResult < Struct.new(
|
13468
13920
|
:message)
|
13921
|
+
SENSITIVE = []
|
13469
13922
|
include Aws::Structure
|
13470
13923
|
end
|
13471
13924
|
|
@@ -13551,15 +14004,19 @@ module Aws::SSM
|
|
13551
14004
|
# @!attribute [rw] type
|
13552
14005
|
# The type of parameter that you want to add to the system.
|
13553
14006
|
#
|
14007
|
+
# <note markdown="1"> `SecureString` is not currently supported for AWS CloudFormation
|
14008
|
+
# templates or in the China Regions.
|
14009
|
+
#
|
14010
|
+
# </note>
|
14011
|
+
#
|
13554
14012
|
# Items in a `StringList` must be separated by a comma (,). You can't
|
13555
14013
|
# use other punctuation or special character to escape items in the
|
13556
14014
|
# list. If you have a parameter value that requires a comma, then use
|
13557
14015
|
# the `String` data type.
|
13558
14016
|
#
|
13559
|
-
#
|
13560
|
-
#
|
13561
|
-
#
|
13562
|
-
# </note>
|
14017
|
+
# Specifying a parameter type is not required when updating a
|
14018
|
+
# parameter. You must specify a parameter type when creating a
|
14019
|
+
# parameter.
|
13563
14020
|
# @return [String]
|
13564
14021
|
#
|
13565
14022
|
# @!attribute [rw] key_id
|
@@ -13755,6 +14212,7 @@ module Aws::SSM
|
|
13755
14212
|
:tier,
|
13756
14213
|
:policies,
|
13757
14214
|
:data_type)
|
14215
|
+
SENSITIVE = []
|
13758
14216
|
include Aws::Structure
|
13759
14217
|
end
|
13760
14218
|
|
@@ -13777,6 +14235,7 @@ module Aws::SSM
|
|
13777
14235
|
class PutParameterResult < Struct.new(
|
13778
14236
|
:version,
|
13779
14237
|
:tier)
|
14238
|
+
SENSITIVE = []
|
13780
14239
|
include Aws::Structure
|
13781
14240
|
end
|
13782
14241
|
|
@@ -13796,6 +14255,7 @@ module Aws::SSM
|
|
13796
14255
|
#
|
13797
14256
|
class RegisterDefaultPatchBaselineRequest < Struct.new(
|
13798
14257
|
:baseline_id)
|
14258
|
+
SENSITIVE = []
|
13799
14259
|
include Aws::Structure
|
13800
14260
|
end
|
13801
14261
|
|
@@ -13807,6 +14267,7 @@ module Aws::SSM
|
|
13807
14267
|
#
|
13808
14268
|
class RegisterDefaultPatchBaselineResult < Struct.new(
|
13809
14269
|
:baseline_id)
|
14270
|
+
SENSITIVE = []
|
13810
14271
|
include Aws::Structure
|
13811
14272
|
end
|
13812
14273
|
|
@@ -13832,6 +14293,7 @@ module Aws::SSM
|
|
13832
14293
|
class RegisterPatchBaselineForPatchGroupRequest < Struct.new(
|
13833
14294
|
:baseline_id,
|
13834
14295
|
:patch_group)
|
14296
|
+
SENSITIVE = []
|
13835
14297
|
include Aws::Structure
|
13836
14298
|
end
|
13837
14299
|
|
@@ -13848,6 +14310,7 @@ module Aws::SSM
|
|
13848
14310
|
class RegisterPatchBaselineForPatchGroupResult < Struct.new(
|
13849
14311
|
:baseline_id,
|
13850
14312
|
:patch_group)
|
14313
|
+
SENSITIVE = []
|
13851
14314
|
include Aws::Structure
|
13852
14315
|
end
|
13853
14316
|
|
@@ -13954,6 +14417,7 @@ module Aws::SSM
|
|
13954
14417
|
:name,
|
13955
14418
|
:description,
|
13956
14419
|
:client_token)
|
14420
|
+
SENSITIVE = [:owner_information, :description]
|
13957
14421
|
include Aws::Structure
|
13958
14422
|
end
|
13959
14423
|
|
@@ -13965,6 +14429,7 @@ module Aws::SSM
|
|
13965
14429
|
#
|
13966
14430
|
class RegisterTargetWithMaintenanceWindowResult < Struct.new(
|
13967
14431
|
:window_target_id)
|
14432
|
+
SENSITIVE = []
|
13968
14433
|
include Aws::Structure
|
13969
14434
|
end
|
13970
14435
|
|
@@ -14165,6 +14630,7 @@ module Aws::SSM
|
|
14165
14630
|
:name,
|
14166
14631
|
:description,
|
14167
14632
|
:client_token)
|
14633
|
+
SENSITIVE = [:task_parameters, :description]
|
14168
14634
|
include Aws::Structure
|
14169
14635
|
end
|
14170
14636
|
|
@@ -14176,6 +14642,7 @@ module Aws::SSM
|
|
14176
14642
|
#
|
14177
14643
|
class RegisterTaskWithMaintenanceWindowResult < Struct.new(
|
14178
14644
|
:window_task_id)
|
14645
|
+
SENSITIVE = []
|
14179
14646
|
include Aws::Structure
|
14180
14647
|
end
|
14181
14648
|
|
@@ -14198,6 +14665,7 @@ module Aws::SSM
|
|
14198
14665
|
#
|
14199
14666
|
class RelatedOpsItem < Struct.new(
|
14200
14667
|
:ops_item_id)
|
14668
|
+
SENSITIVE = []
|
14201
14669
|
include Aws::Structure
|
14202
14670
|
end
|
14203
14671
|
|
@@ -14249,6 +14717,7 @@ module Aws::SSM
|
|
14249
14717
|
:resource_type,
|
14250
14718
|
:resource_id,
|
14251
14719
|
:tag_keys)
|
14720
|
+
SENSITIVE = []
|
14252
14721
|
include Aws::Structure
|
14253
14722
|
end
|
14254
14723
|
|
@@ -14277,6 +14746,7 @@ module Aws::SSM
|
|
14277
14746
|
#
|
14278
14747
|
class ResetServiceSettingRequest < Struct.new(
|
14279
14748
|
:setting_id)
|
14749
|
+
SENSITIVE = []
|
14280
14750
|
include Aws::Structure
|
14281
14751
|
end
|
14282
14752
|
|
@@ -14291,6 +14761,7 @@ module Aws::SSM
|
|
14291
14761
|
#
|
14292
14762
|
class ResetServiceSettingResult < Struct.new(
|
14293
14763
|
:service_setting)
|
14764
|
+
SENSITIVE = []
|
14294
14765
|
include Aws::Structure
|
14295
14766
|
end
|
14296
14767
|
|
@@ -14312,6 +14783,7 @@ module Aws::SSM
|
|
14312
14783
|
class ResolvedTargets < Struct.new(
|
14313
14784
|
:parameter_values,
|
14314
14785
|
:truncated)
|
14786
|
+
SENSITIVE = []
|
14315
14787
|
include Aws::Structure
|
14316
14788
|
end
|
14317
14789
|
|
@@ -14361,6 +14833,7 @@ module Aws::SSM
|
|
14361
14833
|
:execution_summary,
|
14362
14834
|
:compliant_summary,
|
14363
14835
|
:non_compliant_summary)
|
14836
|
+
SENSITIVE = []
|
14364
14837
|
include Aws::Structure
|
14365
14838
|
end
|
14366
14839
|
|
@@ -14373,6 +14846,7 @@ module Aws::SSM
|
|
14373
14846
|
#
|
14374
14847
|
class ResourceDataSyncAlreadyExistsException < Struct.new(
|
14375
14848
|
:sync_name)
|
14849
|
+
SENSITIVE = []
|
14376
14850
|
include Aws::Structure
|
14377
14851
|
end
|
14378
14852
|
|
@@ -14410,6 +14884,7 @@ module Aws::SSM
|
|
14410
14884
|
class ResourceDataSyncAwsOrganizationsSource < Struct.new(
|
14411
14885
|
:organization_source_type,
|
14412
14886
|
:organizational_units)
|
14887
|
+
SENSITIVE = []
|
14413
14888
|
include Aws::Structure
|
14414
14889
|
end
|
14415
14890
|
|
@@ -14423,6 +14898,7 @@ module Aws::SSM
|
|
14423
14898
|
#
|
14424
14899
|
class ResourceDataSyncConflictException < Struct.new(
|
14425
14900
|
:message)
|
14901
|
+
SENSITIVE = []
|
14426
14902
|
include Aws::Structure
|
14427
14903
|
end
|
14428
14904
|
|
@@ -14435,6 +14911,7 @@ module Aws::SSM
|
|
14435
14911
|
#
|
14436
14912
|
class ResourceDataSyncCountExceededException < Struct.new(
|
14437
14913
|
:message)
|
14914
|
+
SENSITIVE = []
|
14438
14915
|
include Aws::Structure
|
14439
14916
|
end
|
14440
14917
|
|
@@ -14458,6 +14935,7 @@ module Aws::SSM
|
|
14458
14935
|
#
|
14459
14936
|
class ResourceDataSyncDestinationDataSharing < Struct.new(
|
14460
14937
|
:destination_data_sharing_type)
|
14938
|
+
SENSITIVE = []
|
14461
14939
|
include Aws::Structure
|
14462
14940
|
end
|
14463
14941
|
|
@@ -14470,6 +14948,7 @@ module Aws::SSM
|
|
14470
14948
|
#
|
14471
14949
|
class ResourceDataSyncInvalidConfigurationException < Struct.new(
|
14472
14950
|
:message)
|
14951
|
+
SENSITIVE = []
|
14473
14952
|
include Aws::Structure
|
14474
14953
|
end
|
14475
14954
|
|
@@ -14534,6 +15013,7 @@ module Aws::SSM
|
|
14534
15013
|
:last_status,
|
14535
15014
|
:sync_created_time,
|
14536
15015
|
:last_sync_status_message)
|
15016
|
+
SENSITIVE = []
|
14537
15017
|
include Aws::Structure
|
14538
15018
|
end
|
14539
15019
|
|
@@ -14554,6 +15034,7 @@ module Aws::SSM
|
|
14554
15034
|
:sync_name,
|
14555
15035
|
:sync_type,
|
14556
15036
|
:message)
|
15037
|
+
SENSITIVE = []
|
14557
15038
|
include Aws::Structure
|
14558
15039
|
end
|
14559
15040
|
|
@@ -14574,6 +15055,7 @@ module Aws::SSM
|
|
14574
15055
|
#
|
14575
15056
|
class ResourceDataSyncOrganizationalUnit < Struct.new(
|
14576
15057
|
:organizational_unit_id)
|
15058
|
+
SENSITIVE = []
|
14577
15059
|
include Aws::Structure
|
14578
15060
|
end
|
14579
15061
|
|
@@ -14629,6 +15111,7 @@ module Aws::SSM
|
|
14629
15111
|
:region,
|
14630
15112
|
:awskms_key_arn,
|
14631
15113
|
:destination_data_sharing)
|
15114
|
+
SENSITIVE = []
|
14632
15115
|
include Aws::Structure
|
14633
15116
|
end
|
14634
15117
|
|
@@ -14680,6 +15163,7 @@ module Aws::SSM
|
|
14680
15163
|
:aws_organizations_source,
|
14681
15164
|
:source_regions,
|
14682
15165
|
:include_future_regions)
|
15166
|
+
SENSITIVE = []
|
14683
15167
|
include Aws::Structure
|
14684
15168
|
end
|
14685
15169
|
|
@@ -14743,6 +15227,7 @@ module Aws::SSM
|
|
14743
15227
|
:source_regions,
|
14744
15228
|
:include_future_regions,
|
14745
15229
|
:state)
|
15230
|
+
SENSITIVE = []
|
14746
15231
|
include Aws::Structure
|
14747
15232
|
end
|
14748
15233
|
|
@@ -14756,6 +15241,7 @@ module Aws::SSM
|
|
14756
15241
|
#
|
14757
15242
|
class ResourceInUseException < Struct.new(
|
14758
15243
|
:message)
|
15244
|
+
SENSITIVE = []
|
14759
15245
|
include Aws::Structure
|
14760
15246
|
end
|
14761
15247
|
|
@@ -14777,6 +15263,7 @@ module Aws::SSM
|
|
14777
15263
|
#
|
14778
15264
|
class ResourceLimitExceededException < Struct.new(
|
14779
15265
|
:message)
|
15266
|
+
SENSITIVE = []
|
14780
15267
|
include Aws::Structure
|
14781
15268
|
end
|
14782
15269
|
|
@@ -14798,6 +15285,7 @@ module Aws::SSM
|
|
14798
15285
|
#
|
14799
15286
|
class ResultAttribute < Struct.new(
|
14800
15287
|
:type_name)
|
15288
|
+
SENSITIVE = []
|
14801
15289
|
include Aws::Structure
|
14802
15290
|
end
|
14803
15291
|
|
@@ -14816,6 +15304,7 @@ module Aws::SSM
|
|
14816
15304
|
#
|
14817
15305
|
class ResumeSessionRequest < Struct.new(
|
14818
15306
|
:session_id)
|
15307
|
+
SENSITIVE = []
|
14819
15308
|
include Aws::Structure
|
14820
15309
|
end
|
14821
15310
|
|
@@ -14854,6 +15343,7 @@ module Aws::SSM
|
|
14854
15343
|
:session_id,
|
14855
15344
|
:token_value,
|
14856
15345
|
:stream_url)
|
15346
|
+
SENSITIVE = []
|
14857
15347
|
include Aws::Structure
|
14858
15348
|
end
|
14859
15349
|
|
@@ -14888,6 +15378,7 @@ module Aws::SSM
|
|
14888
15378
|
:output_s3_region,
|
14889
15379
|
:output_s3_bucket_name,
|
14890
15380
|
:output_s3_key_prefix)
|
15381
|
+
SENSITIVE = []
|
14891
15382
|
include Aws::Structure
|
14892
15383
|
end
|
14893
15384
|
|
@@ -14903,6 +15394,7 @@ module Aws::SSM
|
|
14903
15394
|
#
|
14904
15395
|
class S3OutputUrl < Struct.new(
|
14905
15396
|
:output_url)
|
15397
|
+
SENSITIVE = []
|
14906
15398
|
include Aws::Structure
|
14907
15399
|
end
|
14908
15400
|
|
@@ -14927,6 +15419,7 @@ module Aws::SSM
|
|
14927
15419
|
:window_id,
|
14928
15420
|
:name,
|
14929
15421
|
:execution_time)
|
15422
|
+
SENSITIVE = []
|
14930
15423
|
include Aws::Structure
|
14931
15424
|
end
|
14932
15425
|
|
@@ -14976,6 +15469,7 @@ module Aws::SSM
|
|
14976
15469
|
:automation_execution_id,
|
14977
15470
|
:signal_type,
|
14978
15471
|
:payload)
|
15472
|
+
SENSITIVE = []
|
14979
15473
|
include Aws::Structure
|
14980
15474
|
end
|
14981
15475
|
|
@@ -15021,13 +15515,19 @@ module Aws::SSM
|
|
15021
15515
|
# }
|
15022
15516
|
#
|
15023
15517
|
# @!attribute [rw] instance_ids
|
15024
|
-
# The
|
15025
|
-
#
|
15026
|
-
#
|
15027
|
-
#
|
15028
|
-
#
|
15029
|
-
#
|
15030
|
-
#
|
15518
|
+
# The IDs of the instances where the command should run. Specifying
|
15519
|
+
# instance IDs is most useful when you are targeting a limited number
|
15520
|
+
# of instances, though you can specify up to 50 IDs.
|
15521
|
+
#
|
15522
|
+
# To target a larger number of instances, or if you prefer not to list
|
15523
|
+
# individual instance IDs, we recommend using the `Targets` option
|
15524
|
+
# instead. Using `Targets`, which accepts tag key-value pairs to
|
15525
|
+
# identify the instances to send commands to, you can a send command
|
15526
|
+
# to tens, hundreds, or thousands of instances at once.
|
15527
|
+
#
|
15528
|
+
# For more information about how to use targets, see [Using targets
|
15529
|
+
# and rate controls to send commands to a fleet][1] in the *AWS
|
15530
|
+
# Systems Manager User Guide*.
|
15031
15531
|
#
|
15032
15532
|
#
|
15033
15533
|
#
|
@@ -15035,11 +15535,18 @@ module Aws::SSM
|
|
15035
15535
|
# @return [Array<String>]
|
15036
15536
|
#
|
15037
15537
|
# @!attribute [rw] targets
|
15038
|
-
#
|
15039
|
-
#
|
15040
|
-
#
|
15041
|
-
#
|
15042
|
-
#
|
15538
|
+
# An array of search criteria that targets instances using a
|
15539
|
+
# `Key,Value` combination that you specify. Specifying targets is most
|
15540
|
+
# useful when you want to send a command to a large number of
|
15541
|
+
# instances at once. Using `Targets`, which accepts tag key-value
|
15542
|
+
# pairs to identify instances, you can send a command to tens,
|
15543
|
+
# hundreds, or thousands of instances at once.
|
15544
|
+
#
|
15545
|
+
# To send a command to a smaller number of instances, you can use the
|
15546
|
+
# `InstanceIds` option instead.
|
15547
|
+
#
|
15548
|
+
# For more information about how to use targets, see [Sending commands
|
15549
|
+
# to a fleet][1] in the *AWS Systems Manager User Guide*.
|
15043
15550
|
#
|
15044
15551
|
#
|
15045
15552
|
#
|
@@ -15173,6 +15680,7 @@ module Aws::SSM
|
|
15173
15680
|
:service_role_arn,
|
15174
15681
|
:notification_config,
|
15175
15682
|
:cloud_watch_output_config)
|
15683
|
+
SENSITIVE = []
|
15176
15684
|
include Aws::Structure
|
15177
15685
|
end
|
15178
15686
|
|
@@ -15185,6 +15693,7 @@ module Aws::SSM
|
|
15185
15693
|
#
|
15186
15694
|
class SendCommandResult < Struct.new(
|
15187
15695
|
:command)
|
15696
|
+
SENSITIVE = []
|
15188
15697
|
include Aws::Structure
|
15189
15698
|
end
|
15190
15699
|
|
@@ -15250,6 +15759,7 @@ module Aws::SSM
|
|
15250
15759
|
:last_modified_user,
|
15251
15760
|
:arn,
|
15252
15761
|
:status)
|
15762
|
+
SENSITIVE = []
|
15253
15763
|
include Aws::Structure
|
15254
15764
|
end
|
15255
15765
|
|
@@ -15263,6 +15773,7 @@ module Aws::SSM
|
|
15263
15773
|
#
|
15264
15774
|
class ServiceSettingNotFound < Struct.new(
|
15265
15775
|
:message)
|
15776
|
+
SENSITIVE = []
|
15266
15777
|
include Aws::Structure
|
15267
15778
|
end
|
15268
15779
|
|
@@ -15321,6 +15832,7 @@ module Aws::SSM
|
|
15321
15832
|
:owner,
|
15322
15833
|
:details,
|
15323
15834
|
:output_url)
|
15835
|
+
SENSITIVE = []
|
15324
15836
|
include Aws::Structure
|
15325
15837
|
end
|
15326
15838
|
|
@@ -15376,6 +15888,7 @@ module Aws::SSM
|
|
15376
15888
|
class SessionFilter < Struct.new(
|
15377
15889
|
:key,
|
15378
15890
|
:value)
|
15891
|
+
SENSITIVE = []
|
15379
15892
|
include Aws::Structure
|
15380
15893
|
end
|
15381
15894
|
|
@@ -15394,6 +15907,7 @@ module Aws::SSM
|
|
15394
15907
|
class SessionManagerOutputUrl < Struct.new(
|
15395
15908
|
:s3_output_url,
|
15396
15909
|
:cloud_watch_output_url)
|
15910
|
+
SENSITIVE = []
|
15397
15911
|
include Aws::Structure
|
15398
15912
|
end
|
15399
15913
|
|
@@ -15445,6 +15959,7 @@ module Aws::SSM
|
|
15445
15959
|
:low_count,
|
15446
15960
|
:informational_count,
|
15447
15961
|
:unspecified_count)
|
15962
|
+
SENSITIVE = []
|
15448
15963
|
include Aws::Structure
|
15449
15964
|
end
|
15450
15965
|
|
@@ -15464,6 +15979,7 @@ module Aws::SSM
|
|
15464
15979
|
#
|
15465
15980
|
class StartAssociationsOnceRequest < Struct.new(
|
15466
15981
|
:association_ids)
|
15982
|
+
SENSITIVE = []
|
15467
15983
|
include Aws::Structure
|
15468
15984
|
end
|
15469
15985
|
|
@@ -15621,6 +16137,7 @@ module Aws::SSM
|
|
15621
16137
|
:max_errors,
|
15622
16138
|
:target_locations,
|
15623
16139
|
:tags)
|
16140
|
+
SENSITIVE = []
|
15624
16141
|
include Aws::Structure
|
15625
16142
|
end
|
15626
16143
|
|
@@ -15632,6 +16149,7 @@ module Aws::SSM
|
|
15632
16149
|
#
|
15633
16150
|
class StartAutomationExecutionResult < Struct.new(
|
15634
16151
|
:automation_execution_id)
|
16152
|
+
SENSITIVE = []
|
15635
16153
|
include Aws::Structure
|
15636
16154
|
end
|
15637
16155
|
|
@@ -15653,8 +16171,9 @@ module Aws::SSM
|
|
15653
16171
|
# @!attribute [rw] document_name
|
15654
16172
|
# The name of the SSM document to define the parameters and plugin
|
15655
16173
|
# settings for the session. For example, `SSM-SessionManagerRunShell`.
|
15656
|
-
#
|
15657
|
-
#
|
16174
|
+
# You can call the GetDocument API to verify the document exists
|
16175
|
+
# before attempting to start a session. If no document name is
|
16176
|
+
# provided, a shell to the instance is launched by default.
|
15658
16177
|
# @return [String]
|
15659
16178
|
#
|
15660
16179
|
# @!attribute [rw] parameters
|
@@ -15667,6 +16186,7 @@ module Aws::SSM
|
|
15667
16186
|
:target,
|
15668
16187
|
:document_name,
|
15669
16188
|
:parameters)
|
16189
|
+
SENSITIVE = []
|
15670
16190
|
include Aws::Structure
|
15671
16191
|
end
|
15672
16192
|
|
@@ -15705,6 +16225,7 @@ module Aws::SSM
|
|
15705
16225
|
:session_id,
|
15706
16226
|
:token_value,
|
15707
16227
|
:stream_url)
|
16228
|
+
SENSITIVE = []
|
15708
16229
|
include Aws::Structure
|
15709
16230
|
end
|
15710
16231
|
|
@@ -15843,6 +16364,7 @@ module Aws::SSM
|
|
15843
16364
|
:valid_next_steps,
|
15844
16365
|
:targets,
|
15845
16366
|
:target_location)
|
16367
|
+
SENSITIVE = []
|
15846
16368
|
include Aws::Structure
|
15847
16369
|
end
|
15848
16370
|
|
@@ -15872,6 +16394,7 @@ module Aws::SSM
|
|
15872
16394
|
class StepExecutionFilter < Struct.new(
|
15873
16395
|
:key,
|
15874
16396
|
:values)
|
16397
|
+
SENSITIVE = []
|
15875
16398
|
include Aws::Structure
|
15876
16399
|
end
|
15877
16400
|
|
@@ -15897,6 +16420,7 @@ module Aws::SSM
|
|
15897
16420
|
class StopAutomationExecutionRequest < Struct.new(
|
15898
16421
|
:automation_execution_id,
|
15899
16422
|
:type)
|
16423
|
+
SENSITIVE = []
|
15900
16424
|
include Aws::Structure
|
15901
16425
|
end
|
15902
16426
|
|
@@ -15913,6 +16437,7 @@ module Aws::SSM
|
|
15913
16437
|
#
|
15914
16438
|
class SubTypeCountLimitExceededException < Struct.new(
|
15915
16439
|
:message)
|
16440
|
+
SENSITIVE = []
|
15916
16441
|
include Aws::Structure
|
15917
16442
|
end
|
15918
16443
|
|
@@ -15943,6 +16468,7 @@ module Aws::SSM
|
|
15943
16468
|
class Tag < Struct.new(
|
15944
16469
|
:key,
|
15945
16470
|
:value)
|
16471
|
+
SENSITIVE = []
|
15946
16472
|
include Aws::Structure
|
15947
16473
|
end
|
15948
16474
|
|
@@ -15957,13 +16483,16 @@ module Aws::SSM
|
|
15957
16483
|
#
|
15958
16484
|
# * `Key=tag-key,Values=my-tag-key-1,my-tag-key-2 `
|
15959
16485
|
#
|
15960
|
-
# *
|
16486
|
+
# * **Run Command and Maintenance window targets only**\:
|
15961
16487
|
# `Key=resource-groups:Name,Values=resource-group-name `
|
15962
16488
|
#
|
15963
|
-
# *
|
16489
|
+
# * **Maintenance window targets only**\:
|
15964
16490
|
# `Key=resource-groups:ResourceTypeFilters,Values=resource-type-1,resource-type-2
|
15965
16491
|
# `
|
15966
16492
|
#
|
16493
|
+
# * **Automation targets only**\:
|
16494
|
+
# `Key=ResourceGroup;Values=resource-group-name `
|
16495
|
+
#
|
15967
16496
|
# For example:
|
15968
16497
|
#
|
15969
16498
|
# * `Key=InstanceIds,Values=i-02573cafcfEXAMPLE,i-0471e04240EXAMPLE,i-07782c72faEXAMPLE`
|
@@ -15972,28 +16501,32 @@ module Aws::SSM
|
|
15972
16501
|
#
|
15973
16502
|
# * `Key=tag-key,Values=Name,Instance-Type,CostCenter`
|
15974
16503
|
#
|
15975
|
-
# *
|
16504
|
+
# * **Run Command and Maintenance window targets only**\:
|
15976
16505
|
# `Key=resource-groups:Name,Values=ProductionResourceGroup`
|
15977
16506
|
#
|
15978
16507
|
# This example demonstrates how to target all resources in the
|
15979
16508
|
# resource group **ProductionResourceGroup** in your maintenance
|
15980
16509
|
# window.
|
15981
16510
|
#
|
15982
|
-
# *
|
16511
|
+
# * **Maintenance window targets only**\:
|
15983
16512
|
# `Key=resource-groups:ResourceTypeFilters,Values=AWS::EC2::INSTANCE,AWS::EC2::VPC
|
15984
16513
|
# `
|
15985
16514
|
#
|
15986
16515
|
# This example demonstrates how to target only EC2 instances and VPCs
|
15987
16516
|
# in your maintenance window.
|
15988
16517
|
#
|
15989
|
-
# *
|
16518
|
+
# * **Automation targets only**\:
|
16519
|
+
# `Key=ResourceGroup,Values=MyResourceGroup`
|
16520
|
+
#
|
16521
|
+
# * **State Manager association targets only**\:
|
16522
|
+
# `Key=InstanceIds,Values=* `
|
15990
16523
|
#
|
15991
16524
|
# This example demonstrates how to target all managed instances in the
|
15992
16525
|
# AWS Region where the association was created.
|
15993
16526
|
#
|
15994
|
-
# For information about how to send commands that target instances
|
15995
|
-
# `Key,Value` parameters, see [Targeting multiple instances][1] in
|
15996
|
-
# *AWS Systems Manager User Guide*.
|
16527
|
+
# For more information about how to send commands that target instances
|
16528
|
+
# using `Key,Value` parameters, see [Targeting multiple instances][1] in
|
16529
|
+
# the *AWS Systems Manager User Guide*.
|
15997
16530
|
#
|
15998
16531
|
#
|
15999
16532
|
#
|
@@ -16024,6 +16557,7 @@ module Aws::SSM
|
|
16024
16557
|
class Target < Struct.new(
|
16025
16558
|
:key,
|
16026
16559
|
:values)
|
16560
|
+
SENSITIVE = []
|
16027
16561
|
include Aws::Structure
|
16028
16562
|
end
|
16029
16563
|
|
@@ -16038,6 +16572,7 @@ module Aws::SSM
|
|
16038
16572
|
#
|
16039
16573
|
class TargetInUseException < Struct.new(
|
16040
16574
|
:message)
|
16575
|
+
SENSITIVE = []
|
16041
16576
|
include Aws::Structure
|
16042
16577
|
end
|
16043
16578
|
|
@@ -16087,6 +16622,7 @@ module Aws::SSM
|
|
16087
16622
|
:target_location_max_concurrency,
|
16088
16623
|
:target_location_max_errors,
|
16089
16624
|
:execution_role_name)
|
16625
|
+
SENSITIVE = []
|
16090
16626
|
include Aws::Structure
|
16091
16627
|
end
|
16092
16628
|
|
@@ -16106,6 +16642,7 @@ module Aws::SSM
|
|
16106
16642
|
#
|
16107
16643
|
class TargetNotConnected < Struct.new(
|
16108
16644
|
:message)
|
16645
|
+
SENSITIVE = []
|
16109
16646
|
include Aws::Structure
|
16110
16647
|
end
|
16111
16648
|
|
@@ -16124,6 +16661,7 @@ module Aws::SSM
|
|
16124
16661
|
#
|
16125
16662
|
class TerminateSessionRequest < Struct.new(
|
16126
16663
|
:session_id)
|
16664
|
+
SENSITIVE = []
|
16127
16665
|
include Aws::Structure
|
16128
16666
|
end
|
16129
16667
|
|
@@ -16135,6 +16673,7 @@ module Aws::SSM
|
|
16135
16673
|
#
|
16136
16674
|
class TerminateSessionResponse < Struct.new(
|
16137
16675
|
:session_id)
|
16676
|
+
SENSITIVE = []
|
16138
16677
|
include Aws::Structure
|
16139
16678
|
end
|
16140
16679
|
|
@@ -16155,6 +16694,7 @@ module Aws::SSM
|
|
16155
16694
|
#
|
16156
16695
|
class TooManyUpdates < Struct.new(
|
16157
16696
|
:message)
|
16697
|
+
SENSITIVE = []
|
16158
16698
|
include Aws::Structure
|
16159
16699
|
end
|
16160
16700
|
|
@@ -16168,6 +16708,7 @@ module Aws::SSM
|
|
16168
16708
|
#
|
16169
16709
|
class TotalSizeLimitExceededException < Struct.new(
|
16170
16710
|
:message)
|
16711
|
+
SENSITIVE = []
|
16171
16712
|
include Aws::Structure
|
16172
16713
|
end
|
16173
16714
|
|
@@ -16181,6 +16722,7 @@ module Aws::SSM
|
|
16181
16722
|
#
|
16182
16723
|
class UnsupportedCalendarException < Struct.new(
|
16183
16724
|
:message)
|
16725
|
+
SENSITIVE = []
|
16184
16726
|
include Aws::Structure
|
16185
16727
|
end
|
16186
16728
|
|
@@ -16201,6 +16743,7 @@ module Aws::SSM
|
|
16201
16743
|
#
|
16202
16744
|
class UnsupportedFeatureRequiredException < Struct.new(
|
16203
16745
|
:message)
|
16746
|
+
SENSITIVE = []
|
16204
16747
|
include Aws::Structure
|
16205
16748
|
end
|
16206
16749
|
|
@@ -16219,6 +16762,7 @@ module Aws::SSM
|
|
16219
16762
|
class UnsupportedInventoryItemContextException < Struct.new(
|
16220
16763
|
:type_name,
|
16221
16764
|
:message)
|
16765
|
+
SENSITIVE = []
|
16222
16766
|
include Aws::Structure
|
16223
16767
|
end
|
16224
16768
|
|
@@ -16233,6 +16777,7 @@ module Aws::SSM
|
|
16233
16777
|
#
|
16234
16778
|
class UnsupportedInventorySchemaVersionException < Struct.new(
|
16235
16779
|
:message)
|
16780
|
+
SENSITIVE = []
|
16236
16781
|
include Aws::Structure
|
16237
16782
|
end
|
16238
16783
|
|
@@ -16247,6 +16792,7 @@ module Aws::SSM
|
|
16247
16792
|
#
|
16248
16793
|
class UnsupportedOperatingSystem < Struct.new(
|
16249
16794
|
:message)
|
16795
|
+
SENSITIVE = []
|
16250
16796
|
include Aws::Structure
|
16251
16797
|
end
|
16252
16798
|
|
@@ -16259,6 +16805,7 @@ module Aws::SSM
|
|
16259
16805
|
#
|
16260
16806
|
class UnsupportedParameterType < Struct.new(
|
16261
16807
|
:message)
|
16808
|
+
SENSITIVE = []
|
16262
16809
|
include Aws::Structure
|
16263
16810
|
end
|
16264
16811
|
|
@@ -16273,6 +16820,7 @@ module Aws::SSM
|
|
16273
16820
|
#
|
16274
16821
|
class UnsupportedPlatformType < Struct.new(
|
16275
16822
|
:message)
|
16823
|
+
SENSITIVE = []
|
16276
16824
|
include Aws::Structure
|
16277
16825
|
end
|
16278
16826
|
|
@@ -16460,6 +17008,7 @@ module Aws::SSM
|
|
16460
17008
|
:compliance_severity,
|
16461
17009
|
:sync_compliance,
|
16462
17010
|
:apply_only_at_cron_interval)
|
17011
|
+
SENSITIVE = []
|
16463
17012
|
include Aws::Structure
|
16464
17013
|
end
|
16465
17014
|
|
@@ -16471,6 +17020,7 @@ module Aws::SSM
|
|
16471
17020
|
#
|
16472
17021
|
class UpdateAssociationResult < Struct.new(
|
16473
17022
|
:association_description)
|
17023
|
+
SENSITIVE = []
|
16474
17024
|
include Aws::Structure
|
16475
17025
|
end
|
16476
17026
|
|
@@ -16506,6 +17056,7 @@ module Aws::SSM
|
|
16506
17056
|
:name,
|
16507
17057
|
:instance_id,
|
16508
17058
|
:association_status)
|
17059
|
+
SENSITIVE = []
|
16509
17060
|
include Aws::Structure
|
16510
17061
|
end
|
16511
17062
|
|
@@ -16517,6 +17068,7 @@ module Aws::SSM
|
|
16517
17068
|
#
|
16518
17069
|
class UpdateAssociationStatusResult < Struct.new(
|
16519
17070
|
:association_description)
|
17071
|
+
SENSITIVE = []
|
16520
17072
|
include Aws::Structure
|
16521
17073
|
end
|
16522
17074
|
|
@@ -16543,6 +17095,7 @@ module Aws::SSM
|
|
16543
17095
|
class UpdateDocumentDefaultVersionRequest < Struct.new(
|
16544
17096
|
:name,
|
16545
17097
|
:document_version)
|
17098
|
+
SENSITIVE = []
|
16546
17099
|
include Aws::Structure
|
16547
17100
|
end
|
16548
17101
|
|
@@ -16555,6 +17108,7 @@ module Aws::SSM
|
|
16555
17108
|
#
|
16556
17109
|
class UpdateDocumentDefaultVersionResult < Struct.new(
|
16557
17110
|
:description)
|
17111
|
+
SENSITIVE = []
|
16558
17112
|
include Aws::Structure
|
16559
17113
|
end
|
16560
17114
|
|
@@ -16624,6 +17178,7 @@ module Aws::SSM
|
|
16624
17178
|
:document_version,
|
16625
17179
|
:document_format,
|
16626
17180
|
:target_type)
|
17181
|
+
SENSITIVE = []
|
16627
17182
|
include Aws::Structure
|
16628
17183
|
end
|
16629
17184
|
|
@@ -16635,6 +17190,7 @@ module Aws::SSM
|
|
16635
17190
|
#
|
16636
17191
|
class UpdateDocumentResult < Struct.new(
|
16637
17192
|
:document_description)
|
17193
|
+
SENSITIVE = []
|
16638
17194
|
include Aws::Structure
|
16639
17195
|
end
|
16640
17196
|
|
@@ -16649,6 +17205,7 @@ module Aws::SSM
|
|
16649
17205
|
# end_date: "MaintenanceWindowStringDateTime",
|
16650
17206
|
# schedule: "MaintenanceWindowSchedule",
|
16651
17207
|
# schedule_timezone: "MaintenanceWindowTimezone",
|
17208
|
+
# schedule_offset: 1,
|
16652
17209
|
# duration: 1,
|
16653
17210
|
# cutoff: 1,
|
16654
17211
|
# allow_unassociated_targets: false,
|
@@ -16704,6 +17261,19 @@ module Aws::SSM
|
|
16704
17261
|
# [1]: https://www.iana.org/time-zones
|
16705
17262
|
# @return [String]
|
16706
17263
|
#
|
17264
|
+
# @!attribute [rw] schedule_offset
|
17265
|
+
# The number of days to wait after the date and time specified by a
|
17266
|
+
# CRON expression before running the maintenance window.
|
17267
|
+
#
|
17268
|
+
# For example, the following cron expression schedules a maintenance
|
17269
|
+
# window to run the third Tuesday of every month at 11:30 PM.
|
17270
|
+
#
|
17271
|
+
# `cron(0 30 23 ? * TUE#3 *)`
|
17272
|
+
#
|
17273
|
+
# If the schedule offset is `2`, the maintenance window won't run
|
17274
|
+
# until two days later.
|
17275
|
+
# @return [Integer]
|
17276
|
+
#
|
16707
17277
|
# @!attribute [rw] duration
|
16708
17278
|
# The duration of the maintenance window in hours.
|
16709
17279
|
# @return [Integer]
|
@@ -16738,11 +17308,13 @@ module Aws::SSM
|
|
16738
17308
|
:end_date,
|
16739
17309
|
:schedule,
|
16740
17310
|
:schedule_timezone,
|
17311
|
+
:schedule_offset,
|
16741
17312
|
:duration,
|
16742
17313
|
:cutoff,
|
16743
17314
|
:allow_unassociated_targets,
|
16744
17315
|
:enabled,
|
16745
17316
|
:replace)
|
17317
|
+
SENSITIVE = [:description]
|
16746
17318
|
include Aws::Structure
|
16747
17319
|
end
|
16748
17320
|
|
@@ -16787,6 +17359,11 @@ module Aws::SSM
|
|
16787
17359
|
# [1]: https://www.iana.org/time-zones
|
16788
17360
|
# @return [String]
|
16789
17361
|
#
|
17362
|
+
# @!attribute [rw] schedule_offset
|
17363
|
+
# The number of days to wait to run a maintenance window after the
|
17364
|
+
# scheduled CRON expression date and time.
|
17365
|
+
# @return [Integer]
|
17366
|
+
#
|
16790
17367
|
# @!attribute [rw] duration
|
16791
17368
|
# The duration of the maintenance window in hours.
|
16792
17369
|
# @return [Integer]
|
@@ -16815,10 +17392,12 @@ module Aws::SSM
|
|
16815
17392
|
:end_date,
|
16816
17393
|
:schedule,
|
16817
17394
|
:schedule_timezone,
|
17395
|
+
:schedule_offset,
|
16818
17396
|
:duration,
|
16819
17397
|
:cutoff,
|
16820
17398
|
:allow_unassociated_targets,
|
16821
17399
|
:enabled)
|
17400
|
+
SENSITIVE = [:description]
|
16822
17401
|
include Aws::Structure
|
16823
17402
|
end
|
16824
17403
|
|
@@ -16883,6 +17462,7 @@ module Aws::SSM
|
|
16883
17462
|
:name,
|
16884
17463
|
:description,
|
16885
17464
|
:replace)
|
17465
|
+
SENSITIVE = [:owner_information, :description]
|
16886
17466
|
include Aws::Structure
|
16887
17467
|
end
|
16888
17468
|
|
@@ -16919,6 +17499,7 @@ module Aws::SSM
|
|
16919
17499
|
:owner_information,
|
16920
17500
|
:name,
|
16921
17501
|
:description)
|
17502
|
+
SENSITIVE = [:owner_information, :description]
|
16922
17503
|
include Aws::Structure
|
16923
17504
|
end
|
16924
17505
|
|
@@ -17120,6 +17701,7 @@ module Aws::SSM
|
|
17120
17701
|
:name,
|
17121
17702
|
:description,
|
17122
17703
|
:replace)
|
17704
|
+
SENSITIVE = [:task_parameters, :description]
|
17123
17705
|
include Aws::Structure
|
17124
17706
|
end
|
17125
17707
|
|
@@ -17210,6 +17792,7 @@ module Aws::SSM
|
|
17210
17792
|
:logging_info,
|
17211
17793
|
:name,
|
17212
17794
|
:description)
|
17795
|
+
SENSITIVE = [:task_parameters, :description]
|
17213
17796
|
include Aws::Structure
|
17214
17797
|
end
|
17215
17798
|
|
@@ -17234,6 +17817,7 @@ module Aws::SSM
|
|
17234
17817
|
class UpdateManagedInstanceRoleRequest < Struct.new(
|
17235
17818
|
:instance_id,
|
17236
17819
|
:iam_role)
|
17820
|
+
SENSITIVE = []
|
17237
17821
|
include Aws::Structure
|
17238
17822
|
end
|
17239
17823
|
|
@@ -17372,6 +17956,7 @@ module Aws::SSM
|
|
17372
17956
|
:title,
|
17373
17957
|
:category,
|
17374
17958
|
:severity)
|
17959
|
+
SENSITIVE = []
|
17375
17960
|
include Aws::Structure
|
17376
17961
|
end
|
17377
17962
|
|
@@ -17528,6 +18113,7 @@ module Aws::SSM
|
|
17528
18113
|
:description,
|
17529
18114
|
:sources,
|
17530
18115
|
:replace)
|
18116
|
+
SENSITIVE = []
|
17531
18117
|
include Aws::Structure
|
17532
18118
|
end
|
17533
18119
|
|
@@ -17612,6 +18198,7 @@ module Aws::SSM
|
|
17612
18198
|
:modified_date,
|
17613
18199
|
:description,
|
17614
18200
|
:sources)
|
18201
|
+
SENSITIVE = []
|
17615
18202
|
include Aws::Structure
|
17616
18203
|
end
|
17617
18204
|
|
@@ -17655,6 +18242,7 @@ module Aws::SSM
|
|
17655
18242
|
:sync_name,
|
17656
18243
|
:sync_type,
|
17657
18244
|
:sync_source)
|
18245
|
+
SENSITIVE = []
|
17658
18246
|
include Aws::Structure
|
17659
18247
|
end
|
17660
18248
|
|
@@ -17706,6 +18294,7 @@ module Aws::SSM
|
|
17706
18294
|
class UpdateServiceSettingRequest < Struct.new(
|
17707
18295
|
:setting_id,
|
17708
18296
|
:setting_value)
|
18297
|
+
SENSITIVE = []
|
17709
18298
|
include Aws::Structure
|
17710
18299
|
end
|
17711
18300
|
|