aws-sdk-ssmquicksetup 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-ssmquicksetup/client.rb +882 -0
- data/lib/aws-sdk-ssmquicksetup/client_api.rb +449 -0
- data/lib/aws-sdk-ssmquicksetup/customizations.rb +0 -0
- data/lib/aws-sdk-ssmquicksetup/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-ssmquicksetup/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-ssmquicksetup/endpoints.rb +184 -0
- data/lib/aws-sdk-ssmquicksetup/errors.rb +142 -0
- data/lib/aws-sdk-ssmquicksetup/plugins/endpoints.rb +94 -0
- data/lib/aws-sdk-ssmquicksetup/resource.rb +26 -0
- data/lib/aws-sdk-ssmquicksetup/types.rb +1483 -0
- data/lib/aws-sdk-ssmquicksetup.rb +57 -0
- data/sig/client.rbs +205 -0
- data/sig/errors.rbs +34 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +211 -0
- data/sig/waiters.rbs +13 -0
- metadata +99 -0
@@ -0,0 +1,1483 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::SSMQuickSetup
|
11
|
+
module Types
|
12
|
+
|
13
|
+
# The requester has insufficient permissions to perform the operation.
|
14
|
+
#
|
15
|
+
# @!attribute [rw] message
|
16
|
+
# @return [String]
|
17
|
+
#
|
18
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/AccessDeniedException AWS API Documentation
|
19
|
+
#
|
20
|
+
class AccessDeniedException < Struct.new(
|
21
|
+
:message)
|
22
|
+
SENSITIVE = []
|
23
|
+
include Aws::Structure
|
24
|
+
end
|
25
|
+
|
26
|
+
# The definition of a Quick Setup configuration.
|
27
|
+
#
|
28
|
+
# @!attribute [rw] id
|
29
|
+
# The ID of the configuration definition.
|
30
|
+
# @return [String]
|
31
|
+
#
|
32
|
+
# @!attribute [rw] local_deployment_administration_role_arn
|
33
|
+
# The ARN of the IAM role used to administrate local configuration
|
34
|
+
# deployments.
|
35
|
+
# @return [String]
|
36
|
+
#
|
37
|
+
# @!attribute [rw] local_deployment_execution_role_name
|
38
|
+
# The name of the IAM role used to deploy local configurations.
|
39
|
+
# @return [String]
|
40
|
+
#
|
41
|
+
# @!attribute [rw] parameters
|
42
|
+
# A list of key-value pairs containing the required parameters for the
|
43
|
+
# configuration type.
|
44
|
+
# @return [Hash<String,String>]
|
45
|
+
#
|
46
|
+
# @!attribute [rw] type
|
47
|
+
# The type of the Quick Setup configuration.
|
48
|
+
# @return [String]
|
49
|
+
#
|
50
|
+
# @!attribute [rw] type_version
|
51
|
+
# The version of the Quick Setup type used.
|
52
|
+
# @return [String]
|
53
|
+
#
|
54
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ConfigurationDefinition AWS API Documentation
|
55
|
+
#
|
56
|
+
class ConfigurationDefinition < Struct.new(
|
57
|
+
:id,
|
58
|
+
:local_deployment_administration_role_arn,
|
59
|
+
:local_deployment_execution_role_name,
|
60
|
+
:parameters,
|
61
|
+
:type,
|
62
|
+
:type_version)
|
63
|
+
SENSITIVE = []
|
64
|
+
include Aws::Structure
|
65
|
+
end
|
66
|
+
|
67
|
+
# Defines the preferences and options for a configuration definition.
|
68
|
+
#
|
69
|
+
# @!attribute [rw] local_deployment_administration_role_arn
|
70
|
+
# The ARN of the IAM role used to administrate local configuration
|
71
|
+
# deployments.
|
72
|
+
# @return [String]
|
73
|
+
#
|
74
|
+
# @!attribute [rw] local_deployment_execution_role_name
|
75
|
+
# The name of the IAM role used to deploy local configurations.
|
76
|
+
# @return [String]
|
77
|
+
#
|
78
|
+
# @!attribute [rw] parameters
|
79
|
+
# The parameters for the configuration definition type. Parameters for
|
80
|
+
# configuration definitions vary based the configuration type. The
|
81
|
+
# following tables outline the parameters for each configuration type.
|
82
|
+
#
|
83
|
+
# OpsCenter (Type: Amazon Web ServicesQuickSetupType-SSMOpsCenter)
|
84
|
+
# : * `DelegatedAccountId`
|
85
|
+
#
|
86
|
+
# * Description: (Required) The ID of the delegated administrator
|
87
|
+
# account.
|
88
|
+
#
|
89
|
+
# ^
|
90
|
+
#
|
91
|
+
# * `TargetOrganizationalUnits`
|
92
|
+
#
|
93
|
+
# * Description: (Required) A comma separated list of
|
94
|
+
# organizational units (OUs) you want to deploy the
|
95
|
+
# configuration to.
|
96
|
+
#
|
97
|
+
# ^
|
98
|
+
#
|
99
|
+
# * `TargetRegions`
|
100
|
+
#
|
101
|
+
# * Description: (Required) A comma separated list of Amazon Web
|
102
|
+
# Services Regions you want to deploy the configuration to.
|
103
|
+
#
|
104
|
+
# ^
|
105
|
+
#
|
106
|
+
# Resource Scheduler (Type: Amazon Web ServicesQuickSetupType-Scheduler)
|
107
|
+
# : * `TargetTagKey`
|
108
|
+
#
|
109
|
+
# * Description: (Required) The tag key assigned to the instances
|
110
|
+
# you want to target.
|
111
|
+
#
|
112
|
+
# ^
|
113
|
+
#
|
114
|
+
# * `TargetTagValue`
|
115
|
+
#
|
116
|
+
# * Description: (Required) The value of the tag key assigned to
|
117
|
+
# the instances you want to target.
|
118
|
+
#
|
119
|
+
# ^
|
120
|
+
#
|
121
|
+
# * `ICalendarString`
|
122
|
+
#
|
123
|
+
# * Description: (Required) An iCalendar formatted string
|
124
|
+
# containing the schedule you want Change Manager to use.
|
125
|
+
#
|
126
|
+
# ^
|
127
|
+
#
|
128
|
+
# * `TargetAccounts`
|
129
|
+
#
|
130
|
+
# * Description: (Optional) The ID of the Amazon Web Services
|
131
|
+
# account initiating the configuration deployment. You only need
|
132
|
+
# to provide a value for this parameter if you want to deploy
|
133
|
+
# the configuration locally. A value must be provided for either
|
134
|
+
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
135
|
+
#
|
136
|
+
# ^
|
137
|
+
#
|
138
|
+
# * `TargetOrganizationalUnits`
|
139
|
+
#
|
140
|
+
# * Description: (Optional) A comma separated list of
|
141
|
+
# organizational units (OUs) you want to deploy the
|
142
|
+
# configuration to.
|
143
|
+
#
|
144
|
+
# ^
|
145
|
+
#
|
146
|
+
# * `TargetRegions`
|
147
|
+
#
|
148
|
+
# * Description: (Required) A comma separated list of Amazon Web
|
149
|
+
# Services Regions you want to deploy the configuration to.
|
150
|
+
#
|
151
|
+
# ^
|
152
|
+
#
|
153
|
+
# Default Host Management Configuration (Type: Amazon Web ServicesQuickSetupType-DHMC)
|
154
|
+
# : * `UpdateSSMAgent`
|
155
|
+
#
|
156
|
+
# * Description: (Optional) A boolean value that determines
|
157
|
+
# whether the SSM Agent is updated on the target instances every
|
158
|
+
# 2 weeks. The default value is "`true`".
|
159
|
+
#
|
160
|
+
# ^
|
161
|
+
#
|
162
|
+
# * `TargetOrganizationalUnits`
|
163
|
+
#
|
164
|
+
# * Description: (Required) A comma separated list of
|
165
|
+
# organizational units (OUs) you want to deploy the
|
166
|
+
# configuration to.
|
167
|
+
#
|
168
|
+
# ^
|
169
|
+
#
|
170
|
+
# * `TargetRegions`
|
171
|
+
#
|
172
|
+
# * Description: (Required) A comma separated list of Amazon Web
|
173
|
+
# Services Regions you want to deploy the configuration to.
|
174
|
+
#
|
175
|
+
# ^
|
176
|
+
#
|
177
|
+
# Resource Explorer (Type: Amazon Web ServicesQuickSetupType-ResourceExplorer)
|
178
|
+
# : * `SelectedAggregatorRegion`
|
179
|
+
#
|
180
|
+
# * Description: (Required) The Amazon Web Services Region where
|
181
|
+
# you want to create the aggregator index.
|
182
|
+
#
|
183
|
+
# ^
|
184
|
+
#
|
185
|
+
# * `ReplaceExistingAggregator`
|
186
|
+
#
|
187
|
+
# * Description: (Required) A boolean value that determines
|
188
|
+
# whether to demote an existing aggregator if it is in a Region
|
189
|
+
# that differs from the value you specify for the
|
190
|
+
# `SelectedAggregatorRegion`.
|
191
|
+
#
|
192
|
+
# ^
|
193
|
+
#
|
194
|
+
# * `TargetOrganizationalUnits`
|
195
|
+
#
|
196
|
+
# * Description: (Required) A comma separated list of
|
197
|
+
# organizational units (OUs) you want to deploy the
|
198
|
+
# configuration to.
|
199
|
+
#
|
200
|
+
# ^
|
201
|
+
#
|
202
|
+
# * `TargetRegions`
|
203
|
+
#
|
204
|
+
# * Description: (Required) A comma separated list of Amazon Web
|
205
|
+
# Services Regions you want to deploy the configuration to.
|
206
|
+
#
|
207
|
+
# ^
|
208
|
+
#
|
209
|
+
# Change Manager (Type: Amazon Web ServicesQuickSetupType-SSMChangeMgr)
|
210
|
+
# : * `DelegatedAccountId`
|
211
|
+
#
|
212
|
+
# * Description: (Required) The ID of the delegated administrator
|
213
|
+
# account.
|
214
|
+
#
|
215
|
+
# ^
|
216
|
+
#
|
217
|
+
# * `JobFunction`
|
218
|
+
#
|
219
|
+
# * Description: (Required) The name for the Change Manager job
|
220
|
+
# function.
|
221
|
+
#
|
222
|
+
# ^
|
223
|
+
#
|
224
|
+
# * `PermissionType`
|
225
|
+
#
|
226
|
+
# * Description: (Optional) Specifies whether you want to use
|
227
|
+
# default administrator permissions for the job function role,
|
228
|
+
# or provide a custom IAM policy. The valid values are
|
229
|
+
# `CustomPermissions` and `AdminPermissions`. The default value
|
230
|
+
# for the parameter is `CustomerPermissions`.
|
231
|
+
#
|
232
|
+
# ^
|
233
|
+
#
|
234
|
+
# * `CustomPermissions`
|
235
|
+
#
|
236
|
+
# * Description: (Optional) A JSON string containing the IAM
|
237
|
+
# policy you want your job function to use. You must provide a
|
238
|
+
# value for this parameter if you specify `CustomPermissions`
|
239
|
+
# for the `PermissionType` parameter.
|
240
|
+
#
|
241
|
+
# ^
|
242
|
+
#
|
243
|
+
# * `TargetOrganizationalUnits`
|
244
|
+
#
|
245
|
+
# * Description: (Required) A comma separated list of
|
246
|
+
# organizational units (OUs) you want to deploy the
|
247
|
+
# configuration to.
|
248
|
+
#
|
249
|
+
# ^
|
250
|
+
#
|
251
|
+
# * `TargetRegions`
|
252
|
+
#
|
253
|
+
# * Description: (Required) A comma separated list of Amazon Web
|
254
|
+
# Services Regions you want to deploy the configuration to.
|
255
|
+
#
|
256
|
+
# ^
|
257
|
+
#
|
258
|
+
# DevOps Guru (Type: Amazon Web ServicesQuickSetupType-DevOpsGuru)
|
259
|
+
# : * `AnalyseAllResources`
|
260
|
+
#
|
261
|
+
# * Description: (Optional) A boolean value that determines
|
262
|
+
# whether DevOps Guru analyzes all CloudFormation stacks in the
|
263
|
+
# account. The default value is "`false`".
|
264
|
+
#
|
265
|
+
# ^
|
266
|
+
#
|
267
|
+
# * `EnableSnsNotifications`
|
268
|
+
#
|
269
|
+
# * Description: (Optional) A boolean value that determines
|
270
|
+
# whether DevOps Guru sends notifications when an insight is
|
271
|
+
# created. The default value is "`true`".
|
272
|
+
#
|
273
|
+
# ^
|
274
|
+
#
|
275
|
+
# * `EnableSsmOpsItems`
|
276
|
+
#
|
277
|
+
# * Description: (Optional) A boolean value that determines
|
278
|
+
# whether DevOps Guru creates an OpsCenter OpsItem when an
|
279
|
+
# insight is created. The default value is "`true`".
|
280
|
+
#
|
281
|
+
# ^
|
282
|
+
#
|
283
|
+
# * `EnableDriftRemediation`
|
284
|
+
#
|
285
|
+
# * Description: (Optional) A boolean value that determines
|
286
|
+
# whether a drift remediation schedule is used. The default
|
287
|
+
# value is "`false`".
|
288
|
+
#
|
289
|
+
# ^
|
290
|
+
#
|
291
|
+
# * `RemediationSchedule`
|
292
|
+
#
|
293
|
+
# * Description: (Optional) A rate expression that defines the
|
294
|
+
# schedule for drift remediation. The valid values are `rate(30
|
295
|
+
# days)`, `rate(14 days)`, `rate(1 days)`, and `none`. The
|
296
|
+
# default value is "`none`".
|
297
|
+
#
|
298
|
+
# ^
|
299
|
+
#
|
300
|
+
# * `TargetAccounts`
|
301
|
+
#
|
302
|
+
# * Description: (Optional) The ID of the Amazon Web Services
|
303
|
+
# account initiating the configuration deployment. You only need
|
304
|
+
# to provide a value for this parameter if you want to deploy
|
305
|
+
# the configuration locally. A value must be provided for either
|
306
|
+
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
307
|
+
#
|
308
|
+
# ^
|
309
|
+
#
|
310
|
+
# * `TargetOrganizationalUnits`
|
311
|
+
#
|
312
|
+
# * Description: (Optional) A comma separated list of
|
313
|
+
# organizational units (OUs) you want to deploy the
|
314
|
+
# configuration to.
|
315
|
+
#
|
316
|
+
# ^
|
317
|
+
#
|
318
|
+
# * `TargetRegions`
|
319
|
+
#
|
320
|
+
# * Description: (Required) A comma separated list of Amazon Web
|
321
|
+
# Services Regions you want to deploy the configuration to.
|
322
|
+
#
|
323
|
+
# ^
|
324
|
+
#
|
325
|
+
# Conformance Packs (Type: Amazon Web ServicesQuickSetupType-CFGCPacks)
|
326
|
+
# : * `DelegatedAccountId`
|
327
|
+
#
|
328
|
+
# * Description: (Optional) The ID of the delegated administrator
|
329
|
+
# account. This parameter is required for Organization
|
330
|
+
# deployments.
|
331
|
+
#
|
332
|
+
# ^
|
333
|
+
#
|
334
|
+
# * `RemediationSchedule`
|
335
|
+
#
|
336
|
+
# * Description: (Optional) A rate expression that defines the
|
337
|
+
# schedule for drift remediation. The valid values are `rate(30
|
338
|
+
# days)`, `rate(14 days)`, `rate(2 days)`, and `none`. The
|
339
|
+
# default value is "`none`".
|
340
|
+
#
|
341
|
+
# ^
|
342
|
+
#
|
343
|
+
# * `CPackNames`
|
344
|
+
#
|
345
|
+
# * Description: (Required) A comma separated list of Config
|
346
|
+
# conformance packs.
|
347
|
+
#
|
348
|
+
# ^
|
349
|
+
#
|
350
|
+
# * `TargetAccounts`
|
351
|
+
#
|
352
|
+
# * Description: (Optional) The ID of the Amazon Web Services
|
353
|
+
# account initiating the configuration deployment. You only need
|
354
|
+
# to provide a value for this parameter if you want to deploy
|
355
|
+
# the configuration locally. A value must be provided for either
|
356
|
+
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
357
|
+
#
|
358
|
+
# ^
|
359
|
+
#
|
360
|
+
# * `TargetOrganizationalUnits`
|
361
|
+
#
|
362
|
+
# * Description: (Optional) The ID of the root of your
|
363
|
+
# Organization. This configuration type doesn't currently
|
364
|
+
# support choosing specific OUs. The configuration will be
|
365
|
+
# deployed to all the OUs in the Organization.
|
366
|
+
#
|
367
|
+
# ^
|
368
|
+
#
|
369
|
+
# * `TargetRegions`
|
370
|
+
#
|
371
|
+
# * Description: (Required) A comma separated list of Amazon Web
|
372
|
+
# Services Regions you want to deploy the configuration to.
|
373
|
+
#
|
374
|
+
# ^
|
375
|
+
#
|
376
|
+
# Config Recording (Type: Amazon Web ServicesQuickSetupType-CFGRecording)
|
377
|
+
# : * `RecordAllResources`
|
378
|
+
#
|
379
|
+
# * Description: (Optional) A boolean value that determines
|
380
|
+
# whether all supported resources are recorded. The default
|
381
|
+
# value is "`true`".
|
382
|
+
#
|
383
|
+
# ^
|
384
|
+
#
|
385
|
+
# * `ResourceTypesToRecord`
|
386
|
+
#
|
387
|
+
# * Description: (Optional) A comma separated list of resource
|
388
|
+
# types you want to record.
|
389
|
+
#
|
390
|
+
# ^
|
391
|
+
#
|
392
|
+
# * `RecordGlobalResourceTypes`
|
393
|
+
#
|
394
|
+
# * Description: (Optional) A boolean value that determines
|
395
|
+
# whether global resources are recorded with all resource
|
396
|
+
# configurations. The default value is "`false`".
|
397
|
+
#
|
398
|
+
# ^
|
399
|
+
#
|
400
|
+
# * `GlobalResourceTypesRegion`
|
401
|
+
#
|
402
|
+
# * Description: (Optional) Determines the Amazon Web Services
|
403
|
+
# Region where global resources are recorded.
|
404
|
+
#
|
405
|
+
# ^
|
406
|
+
#
|
407
|
+
# * `UseCustomBucket`
|
408
|
+
#
|
409
|
+
# * Description: (Optional) A boolean value that determines
|
410
|
+
# whether a custom Amazon S3 bucket is used for delivery. The
|
411
|
+
# default value is "`false`".
|
412
|
+
#
|
413
|
+
# ^
|
414
|
+
#
|
415
|
+
# * `DeliveryBucketName`
|
416
|
+
#
|
417
|
+
# * Description: (Optional) The name of the Amazon S3 bucket you
|
418
|
+
# want Config to deliver configuration snapshots and
|
419
|
+
# configuration history files to.
|
420
|
+
#
|
421
|
+
# ^
|
422
|
+
#
|
423
|
+
# * `DeliveryBucketPrefix`
|
424
|
+
#
|
425
|
+
# * Description: (Optional) The key prefix you want to use in the
|
426
|
+
# custom Amazon S3 bucket.
|
427
|
+
#
|
428
|
+
# ^
|
429
|
+
#
|
430
|
+
# * `NotificationOptions`
|
431
|
+
#
|
432
|
+
# * Description: (Optional) Determines the notification
|
433
|
+
# configuration for the recorder. The valid values are
|
434
|
+
# `NoStreaming`, `UseExistingTopic`, and `CreateTopic`. The
|
435
|
+
# default value is `NoStreaming`.
|
436
|
+
#
|
437
|
+
# ^
|
438
|
+
#
|
439
|
+
# * `CustomDeliveryTopicAccountId`
|
440
|
+
#
|
441
|
+
# * Description: (Optional) The ID of the Amazon Web Services
|
442
|
+
# account where the Amazon SNS topic you want to use for
|
443
|
+
# notifications resides. You must specify a value for this
|
444
|
+
# parameter if you use the `UseExistingTopic` notification
|
445
|
+
# option.
|
446
|
+
#
|
447
|
+
# ^
|
448
|
+
#
|
449
|
+
# * `CustomDeliveryTopicName`
|
450
|
+
#
|
451
|
+
# * Description: (Optional) The name of the Amazon SNS topic you
|
452
|
+
# want to use for notifications. You must specify a value for
|
453
|
+
# this parameter if you use the `UseExistingTopic` notification
|
454
|
+
# option.
|
455
|
+
#
|
456
|
+
# ^
|
457
|
+
#
|
458
|
+
# * `RemediationSchedule`
|
459
|
+
#
|
460
|
+
# * Description: (Optional) A rate expression that defines the
|
461
|
+
# schedule for drift remediation. The valid values are `rate(30
|
462
|
+
# days)`, `rate(7 days)`, `rate(1 days)`, and `none`. The
|
463
|
+
# default value is "`none`".
|
464
|
+
#
|
465
|
+
# ^
|
466
|
+
#
|
467
|
+
# * `TargetAccounts`
|
468
|
+
#
|
469
|
+
# * Description: (Optional) The ID of the Amazon Web Services
|
470
|
+
# account initiating the configuration deployment. You only need
|
471
|
+
# to provide a value for this parameter if you want to deploy
|
472
|
+
# the configuration locally. A value must be provided for either
|
473
|
+
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
474
|
+
#
|
475
|
+
# ^
|
476
|
+
#
|
477
|
+
# * `TargetOrganizationalUnits`
|
478
|
+
#
|
479
|
+
# * Description: (Optional) The ID of the root of your
|
480
|
+
# Organization. This configuration type doesn't currently
|
481
|
+
# support choosing specific OUs. The configuration will be
|
482
|
+
# deployed to all the OUs in the Organization.
|
483
|
+
#
|
484
|
+
# ^
|
485
|
+
#
|
486
|
+
# * `TargetRegions`
|
487
|
+
#
|
488
|
+
# * Description: (Required) A comma separated list of Amazon Web
|
489
|
+
# Services Regions you want to deploy the configuration to.
|
490
|
+
#
|
491
|
+
# ^
|
492
|
+
#
|
493
|
+
# Host Management (Type: Amazon Web ServicesQuickSetupType-SSMHostMgmt)
|
494
|
+
# : * `UpdateSSMAgent`
|
495
|
+
#
|
496
|
+
# * Description: (Optional) A boolean value that determines
|
497
|
+
# whether the SSM Agent is updated on the target instances every
|
498
|
+
# 2 weeks. The default value is "`true`".
|
499
|
+
#
|
500
|
+
# ^
|
501
|
+
#
|
502
|
+
# * `UpdateEc2LaunchAgent`
|
503
|
+
#
|
504
|
+
# * Description: (Optional) A boolean value that determines
|
505
|
+
# whether the EC2 Launch agent is updated on the target
|
506
|
+
# instances every month. The default value is "`false`".
|
507
|
+
#
|
508
|
+
# ^
|
509
|
+
#
|
510
|
+
# * `CollectInventory`
|
511
|
+
#
|
512
|
+
# * Description: (Optional) A boolean value that determines
|
513
|
+
# whether the EC2 Launch agent is updated on the target
|
514
|
+
# instances every month. The default value is "`true`".
|
515
|
+
#
|
516
|
+
# ^
|
517
|
+
#
|
518
|
+
# * `ScanInstances`
|
519
|
+
#
|
520
|
+
# * Description: (Optional) A boolean value that determines
|
521
|
+
# whether the target instances are scanned daily for available
|
522
|
+
# patches. The default value is "`true`".
|
523
|
+
#
|
524
|
+
# ^
|
525
|
+
#
|
526
|
+
# * `InstallCloudWatchAgent`
|
527
|
+
#
|
528
|
+
# * Description: (Optional) A boolean value that determines
|
529
|
+
# whether the Amazon CloudWatch agent is installed on the target
|
530
|
+
# instances. The default value is "`false`".
|
531
|
+
#
|
532
|
+
# ^
|
533
|
+
#
|
534
|
+
# * `UpdateCloudWatchAgent`
|
535
|
+
#
|
536
|
+
# * Description: (Optional) A boolean value that determines
|
537
|
+
# whether the Amazon CloudWatch agent is updated on the target
|
538
|
+
# instances every month. The default value is "`false`".
|
539
|
+
#
|
540
|
+
# ^
|
541
|
+
#
|
542
|
+
# * `IsPolicyAttachAllowed`
|
543
|
+
#
|
544
|
+
# * Description: (Optional) A boolean value that determines
|
545
|
+
# whether Quick Setup attaches policies to instances profiles
|
546
|
+
# already associated with the target instances. The default
|
547
|
+
# value is "`false`".
|
548
|
+
#
|
549
|
+
# ^
|
550
|
+
#
|
551
|
+
# * `TargetType`
|
552
|
+
#
|
553
|
+
# * Description: (Optional) Determines how instances are targeted
|
554
|
+
# for local account deployments. Don't specify a value for this
|
555
|
+
# parameter if you're deploying to OUs. The valid values are
|
556
|
+
# `*`, `InstanceIds`, `ResourceGroups`, and `Tags`. Use `*` to
|
557
|
+
# target all instances in the account.
|
558
|
+
#
|
559
|
+
# ^
|
560
|
+
#
|
561
|
+
# * `TargetInstances`
|
562
|
+
#
|
563
|
+
# * Description: (Optional) A comma separated list of instance
|
564
|
+
# IDs. You must provide a value for this parameter if you
|
565
|
+
# specify `InstanceIds` for the `TargetType` parameter.
|
566
|
+
#
|
567
|
+
# ^
|
568
|
+
#
|
569
|
+
# * `TargetTagKey`
|
570
|
+
#
|
571
|
+
# * Description: (Optional) The tag key assigned to the instances
|
572
|
+
# you want to target. You must provide a value for this
|
573
|
+
# parameter if you specify `Tags` for the `TargetType`
|
574
|
+
# parameter.
|
575
|
+
#
|
576
|
+
# ^
|
577
|
+
#
|
578
|
+
# * `TargetTagValue`
|
579
|
+
#
|
580
|
+
# * Description: (Optional) The value of the tag key assigned to
|
581
|
+
# the instances you want to target. You must provide a value for
|
582
|
+
# this parameter if you specify `Tags` for the `TargetType`
|
583
|
+
# parameter.
|
584
|
+
#
|
585
|
+
# ^
|
586
|
+
#
|
587
|
+
# * `ResourceGroupName`
|
588
|
+
#
|
589
|
+
# * Description: (Optional) The name of the resource group
|
590
|
+
# associated with the instances you want to target. You must
|
591
|
+
# provide a value for this parameter if you specify
|
592
|
+
# `ResourceGroups` for the `TargetType` parameter.
|
593
|
+
#
|
594
|
+
# ^
|
595
|
+
#
|
596
|
+
# * `TargetAccounts`
|
597
|
+
#
|
598
|
+
# * Description: (Optional) The ID of the Amazon Web Services
|
599
|
+
# account initiating the configuration deployment. You only need
|
600
|
+
# to provide a value for this parameter if you want to deploy
|
601
|
+
# the configuration locally. A value must be provided for either
|
602
|
+
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
603
|
+
#
|
604
|
+
# ^
|
605
|
+
#
|
606
|
+
# * `TargetOrganizationalUnits`
|
607
|
+
#
|
608
|
+
# * Description: (Optional) A comma separated list of
|
609
|
+
# organizational units (OUs) you want to deploy the
|
610
|
+
# configuration to.
|
611
|
+
#
|
612
|
+
# ^
|
613
|
+
#
|
614
|
+
# * `TargetRegions`
|
615
|
+
#
|
616
|
+
# * Description: (Required) A comma separated list of Amazon Web
|
617
|
+
# Services Regions you want to deploy the configuration to.
|
618
|
+
#
|
619
|
+
# ^
|
620
|
+
#
|
621
|
+
# Distributor (Type: Amazon Web ServicesQuickSetupType-Distributor)
|
622
|
+
# : * `PackagesToInstall`
|
623
|
+
#
|
624
|
+
# * Description: (Required) A comma separated list of packages you
|
625
|
+
# want to install on the target instances. The valid values are
|
626
|
+
# `AWSEFSTools`, `AWSCWAgent`, and `AWSEC2LaunchAgent`.
|
627
|
+
#
|
628
|
+
# ^
|
629
|
+
#
|
630
|
+
# * `RemediationSchedule`
|
631
|
+
#
|
632
|
+
# * Description: (Optional) A rate expression that defines the
|
633
|
+
# schedule for drift remediation. The valid values are `rate(30
|
634
|
+
# days)`, `rate(14 days)`, `rate(2 days)`, and `none`. The
|
635
|
+
# default value is "`rate(30 days)`".
|
636
|
+
#
|
637
|
+
# ^
|
638
|
+
#
|
639
|
+
# * `IsPolicyAttachAllowed`
|
640
|
+
#
|
641
|
+
# * Description: (Optional) A boolean value that determines
|
642
|
+
# whether Quick Setup attaches policies to instances profiles
|
643
|
+
# already associated with the target instances. The default
|
644
|
+
# value is "`false`".
|
645
|
+
#
|
646
|
+
# ^
|
647
|
+
#
|
648
|
+
# * `TargetType`
|
649
|
+
#
|
650
|
+
# * Description: (Optional) Determines how instances are targeted
|
651
|
+
# for local account deployments. Don't specify a value for this
|
652
|
+
# parameter if you're deploying to OUs. The valid values are
|
653
|
+
# `*`, `InstanceIds`, `ResourceGroups`, and `Tags`. Use `*` to
|
654
|
+
# target all instances in the account.
|
655
|
+
#
|
656
|
+
# ^
|
657
|
+
#
|
658
|
+
# * `TargetInstances`
|
659
|
+
#
|
660
|
+
# * Description: (Optional) A comma separated list of instance
|
661
|
+
# IDs. You must provide a value for this parameter if you
|
662
|
+
# specify `InstanceIds` for the `TargetType` parameter.
|
663
|
+
#
|
664
|
+
# ^
|
665
|
+
#
|
666
|
+
# * `TargetTagKey`
|
667
|
+
#
|
668
|
+
# * Description: (Required) The tag key assigned to the instances
|
669
|
+
# you want to target. You must provide a value for this
|
670
|
+
# parameter if you specify `Tags` for the `TargetType`
|
671
|
+
# parameter.
|
672
|
+
#
|
673
|
+
# ^
|
674
|
+
#
|
675
|
+
# * `TargetTagValue`
|
676
|
+
#
|
677
|
+
# * Description: (Required) The value of the tag key assigned to
|
678
|
+
# the instances you want to target. You must provide a value for
|
679
|
+
# this parameter if you specify `Tags` for the `TargetType`
|
680
|
+
# parameter.
|
681
|
+
#
|
682
|
+
# ^
|
683
|
+
#
|
684
|
+
# * `ResourceGroupName`
|
685
|
+
#
|
686
|
+
# * Description: (Required) The name of the resource group
|
687
|
+
# associated with the instances you want to target. You must
|
688
|
+
# provide a value for this parameter if you specify
|
689
|
+
# `ResourceGroups` for the `TargetType` parameter.
|
690
|
+
#
|
691
|
+
# ^
|
692
|
+
#
|
693
|
+
# * `TargetAccounts`
|
694
|
+
#
|
695
|
+
# * Description: (Optional) The ID of the Amazon Web Services
|
696
|
+
# account initiating the configuration deployment. You only need
|
697
|
+
# to provide a value for this parameter if you want to deploy
|
698
|
+
# the configuration locally. A value must be provided for either
|
699
|
+
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
700
|
+
#
|
701
|
+
# ^
|
702
|
+
#
|
703
|
+
# * `TargetOrganizationalUnits`
|
704
|
+
#
|
705
|
+
# * Description: (Optional) A comma separated list of
|
706
|
+
# organizational units (OUs) you want to deploy the
|
707
|
+
# configuration to.
|
708
|
+
#
|
709
|
+
# ^
|
710
|
+
#
|
711
|
+
# * `TargetRegions`
|
712
|
+
#
|
713
|
+
# * Description: (Required) A comma separated list of Amazon Web
|
714
|
+
# Services Regions you want to deploy the configuration to.
|
715
|
+
#
|
716
|
+
# ^
|
717
|
+
#
|
718
|
+
# Patch Policy (Type: Amazon Web ServicesQuickSetupType-PatchPolicy)
|
719
|
+
# : * `PatchPolicyName`
|
720
|
+
#
|
721
|
+
# * Description: (Required) A name for the patch policy. The value
|
722
|
+
# you provide is applied to target Amazon EC2 instances as a
|
723
|
+
# tag.
|
724
|
+
#
|
725
|
+
# ^
|
726
|
+
#
|
727
|
+
# * `SelectedPatchBaselines`
|
728
|
+
#
|
729
|
+
# * Description: (Required) An array of JSON objects containing
|
730
|
+
# the information for the patch baselines to include in your
|
731
|
+
# patch policy.
|
732
|
+
#
|
733
|
+
# ^
|
734
|
+
#
|
735
|
+
# * `PatchBaselineUseDefault`
|
736
|
+
#
|
737
|
+
# * Description: (Optional) A boolean value that determines
|
738
|
+
# whether the selected patch baselines are all Amazon Web
|
739
|
+
# Services provided.
|
740
|
+
#
|
741
|
+
# ^
|
742
|
+
#
|
743
|
+
# * `ConfigurationOptionsPatchOperation`
|
744
|
+
#
|
745
|
+
# * Description: (Optional) Determines whether target instances
|
746
|
+
# scan for available patches, or scan and install available
|
747
|
+
# patches. The valid values are `Scan` and `ScanAndInstall`. The
|
748
|
+
# default value for the parameter is `Scan`.
|
749
|
+
#
|
750
|
+
# ^
|
751
|
+
#
|
752
|
+
# * `ConfigurationOptionsScanValue`
|
753
|
+
#
|
754
|
+
# * Description: (Optional) A cron expression that is used as the
|
755
|
+
# schedule for when instances scan for available patches.
|
756
|
+
#
|
757
|
+
# ^
|
758
|
+
#
|
759
|
+
# * `ConfigurationOptionsInstallValue`
|
760
|
+
#
|
761
|
+
# * Description: (Optional) A cron expression that is used as the
|
762
|
+
# schedule for when instances install available patches.
|
763
|
+
#
|
764
|
+
# ^
|
765
|
+
#
|
766
|
+
# * `ConfigurationOptionsScanNextInterval`
|
767
|
+
#
|
768
|
+
# * Description: (Optional) A boolean value that determines
|
769
|
+
# whether instances should scan for available patches at the
|
770
|
+
# next cron interval. The default value is "`false`".
|
771
|
+
#
|
772
|
+
# ^
|
773
|
+
#
|
774
|
+
# * `ConfigurationOptionsInstallNextInterval`
|
775
|
+
#
|
776
|
+
# * Description: (Optional) A boolean value that determines
|
777
|
+
# whether instances should scan for available patches at the
|
778
|
+
# next cron interval. The default value is "`false`".
|
779
|
+
#
|
780
|
+
# ^
|
781
|
+
#
|
782
|
+
# * `RebootOption`
|
783
|
+
#
|
784
|
+
# * Description: (Optional) A boolean value that determines
|
785
|
+
# whether instances are rebooted after patches are installed.
|
786
|
+
# The default value is "`false`".
|
787
|
+
#
|
788
|
+
# ^
|
789
|
+
#
|
790
|
+
# * `IsPolicyAttachAllowed`
|
791
|
+
#
|
792
|
+
# * Description: (Optional) A boolean value that determines
|
793
|
+
# whether Quick Setup attaches policies to instances profiles
|
794
|
+
# already associated with the target instances. The default
|
795
|
+
# value is "`false`".
|
796
|
+
#
|
797
|
+
# ^
|
798
|
+
#
|
799
|
+
# * `OutputLogEnableS3`
|
800
|
+
#
|
801
|
+
# * Description: (Optional) A boolean value that determines
|
802
|
+
# whether command output logs are sent to Amazon S3.
|
803
|
+
#
|
804
|
+
# ^
|
805
|
+
#
|
806
|
+
# * `OutputS3Location`
|
807
|
+
#
|
808
|
+
# * Description: (Optional) A JSON string containing information
|
809
|
+
# about the Amazon S3 bucket where you want to store the output
|
810
|
+
# details of the request.
|
811
|
+
#
|
812
|
+
# * `OutputS3BucketRegion`
|
813
|
+
#
|
814
|
+
# * Description: (Optional) The Amazon Web Services Region
|
815
|
+
# where the Amazon S3 bucket you want Config to deliver
|
816
|
+
# command output to is located.
|
817
|
+
#
|
818
|
+
# ^
|
819
|
+
#
|
820
|
+
# * `OutputS3BucketName`
|
821
|
+
#
|
822
|
+
# * Description: (Optional) The name of the Amazon S3 bucket
|
823
|
+
# you want Config to deliver command output to.
|
824
|
+
#
|
825
|
+
# ^
|
826
|
+
#
|
827
|
+
# * `OutputS3KeyPrefix`
|
828
|
+
#
|
829
|
+
# * Description: (Optional) The key prefix you want to use in
|
830
|
+
# the custom Amazon S3 bucket.
|
831
|
+
#
|
832
|
+
# ^
|
833
|
+
#
|
834
|
+
# * `TargetType`
|
835
|
+
#
|
836
|
+
# * Description: (Optional) Determines how instances are targeted
|
837
|
+
# for local account deployments. Don't specify a value for this
|
838
|
+
# parameter if you're deploying to OUs. The valid values are
|
839
|
+
# `*`, `InstanceIds`, `ResourceGroups`, and `Tags`. Use `*` to
|
840
|
+
# target all instances in the account.
|
841
|
+
#
|
842
|
+
# ^
|
843
|
+
#
|
844
|
+
# * `TargetInstances`
|
845
|
+
#
|
846
|
+
# * Description: (Optional) A comma separated list of instance
|
847
|
+
# IDs. You must provide a value for this parameter if you
|
848
|
+
# specify `InstanceIds` for the `TargetType` parameter.
|
849
|
+
#
|
850
|
+
# ^
|
851
|
+
#
|
852
|
+
# * `TargetTagKey`
|
853
|
+
#
|
854
|
+
# * Description: (Required) The tag key assigned to the instances
|
855
|
+
# you want to target. You must provide a value for this
|
856
|
+
# parameter if you specify `Tags` for the `TargetType`
|
857
|
+
# parameter.
|
858
|
+
#
|
859
|
+
# ^
|
860
|
+
#
|
861
|
+
# * `TargetTagValue`
|
862
|
+
#
|
863
|
+
# * Description: (Required) The value of the tag key assigned to
|
864
|
+
# the instances you want to target. You must provide a value for
|
865
|
+
# this parameter if you specify `Tags` for the `TargetType`
|
866
|
+
# parameter.
|
867
|
+
#
|
868
|
+
# ^
|
869
|
+
#
|
870
|
+
# * `ResourceGroupName`
|
871
|
+
#
|
872
|
+
# * Description: (Required) The name of the resource group
|
873
|
+
# associated with the instances you want to target. You must
|
874
|
+
# provide a value for this parameter if you specify
|
875
|
+
# `ResourceGroups` for the `TargetType` parameter.
|
876
|
+
#
|
877
|
+
# ^
|
878
|
+
#
|
879
|
+
# * `TargetAccounts`
|
880
|
+
#
|
881
|
+
# * Description: (Optional) The ID of the Amazon Web Services
|
882
|
+
# account initiating the configuration deployment. You only need
|
883
|
+
# to provide a value for this parameter if you want to deploy
|
884
|
+
# the configuration locally. A value must be provided for either
|
885
|
+
# `TargetAccounts` or `TargetOrganizationalUnits`.
|
886
|
+
#
|
887
|
+
# ^
|
888
|
+
#
|
889
|
+
# * `TargetOrganizationalUnits`
|
890
|
+
#
|
891
|
+
# * Description: (Optional) A comma separated list of
|
892
|
+
# organizational units (OUs) you want to deploy the
|
893
|
+
# configuration to.
|
894
|
+
#
|
895
|
+
# ^
|
896
|
+
#
|
897
|
+
# * `TargetRegions`
|
898
|
+
#
|
899
|
+
# * Description: (Required) A comma separated list of Amazon Web
|
900
|
+
# Services Regions you want to deploy the configuration to.
|
901
|
+
#
|
902
|
+
# ^
|
903
|
+
# @return [Hash<String,String>]
|
904
|
+
#
|
905
|
+
# @!attribute [rw] type
|
906
|
+
# The type of the Quick Setup configuration.
|
907
|
+
# @return [String]
|
908
|
+
#
|
909
|
+
# @!attribute [rw] type_version
|
910
|
+
# The version of the Quick Setup type to use.
|
911
|
+
# @return [String]
|
912
|
+
#
|
913
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ConfigurationDefinitionInput AWS API Documentation
|
914
|
+
#
|
915
|
+
class ConfigurationDefinitionInput < Struct.new(
|
916
|
+
:local_deployment_administration_role_arn,
|
917
|
+
:local_deployment_execution_role_name,
|
918
|
+
:parameters,
|
919
|
+
:type,
|
920
|
+
:type_version)
|
921
|
+
SENSITIVE = []
|
922
|
+
include Aws::Structure
|
923
|
+
end
|
924
|
+
|
925
|
+
# A summarized definition of a Quick Setup configuration definition.
|
926
|
+
#
|
927
|
+
# @!attribute [rw] first_class_parameters
|
928
|
+
# The common parameters and values for the configuration definition.
|
929
|
+
# @return [Hash<String,String>]
|
930
|
+
#
|
931
|
+
# @!attribute [rw] id
|
932
|
+
# The ID of the configuration definition.
|
933
|
+
# @return [String]
|
934
|
+
#
|
935
|
+
# @!attribute [rw] type
|
936
|
+
# The type of the Quick Setup configuration used by the configuration
|
937
|
+
# definition.
|
938
|
+
# @return [String]
|
939
|
+
#
|
940
|
+
# @!attribute [rw] type_version
|
941
|
+
# The version of the Quick Setup type used by the configuration
|
942
|
+
# definition.
|
943
|
+
# @return [String]
|
944
|
+
#
|
945
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ConfigurationDefinitionSummary AWS API Documentation
|
946
|
+
#
|
947
|
+
class ConfigurationDefinitionSummary < Struct.new(
|
948
|
+
:first_class_parameters,
|
949
|
+
:id,
|
950
|
+
:type,
|
951
|
+
:type_version)
|
952
|
+
SENSITIVE = []
|
953
|
+
include Aws::Structure
|
954
|
+
end
|
955
|
+
|
956
|
+
# A summary of a Quick Setup configuration manager.
|
957
|
+
#
|
958
|
+
# @!attribute [rw] configuration_definition_summaries
|
959
|
+
# A summary of the Quick Setup configuration definition.
|
960
|
+
# @return [Array<Types::ConfigurationDefinitionSummary>]
|
961
|
+
#
|
962
|
+
# @!attribute [rw] description
|
963
|
+
# The description of the configuration.
|
964
|
+
# @return [String]
|
965
|
+
#
|
966
|
+
# @!attribute [rw] manager_arn
|
967
|
+
# The ARN of the Quick Setup configuration.
|
968
|
+
# @return [String]
|
969
|
+
#
|
970
|
+
# @!attribute [rw] name
|
971
|
+
# The name of the configuration
|
972
|
+
# @return [String]
|
973
|
+
#
|
974
|
+
# @!attribute [rw] status_summaries
|
975
|
+
# Summaries of the state of the configuration manager. These summaries
|
976
|
+
# include an aggregate of the statuses from the configuration
|
977
|
+
# definition associated with the configuration manager. This includes
|
978
|
+
# deployment statuses, association statuses, drift statuses, health
|
979
|
+
# checks, and more.
|
980
|
+
# @return [Array<Types::StatusSummary>]
|
981
|
+
#
|
982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ConfigurationManagerSummary AWS API Documentation
|
983
|
+
#
|
984
|
+
class ConfigurationManagerSummary < Struct.new(
|
985
|
+
:configuration_definition_summaries,
|
986
|
+
:description,
|
987
|
+
:manager_arn,
|
988
|
+
:name,
|
989
|
+
:status_summaries)
|
990
|
+
SENSITIVE = []
|
991
|
+
include Aws::Structure
|
992
|
+
end
|
993
|
+
|
994
|
+
# Another request is being processed. Wait a few minutes and try again.
|
995
|
+
#
|
996
|
+
# @!attribute [rw] message
|
997
|
+
# @return [String]
|
998
|
+
#
|
999
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ConflictException AWS API Documentation
|
1000
|
+
#
|
1001
|
+
class ConflictException < Struct.new(
|
1002
|
+
:message)
|
1003
|
+
SENSITIVE = []
|
1004
|
+
include Aws::Structure
|
1005
|
+
end
|
1006
|
+
|
1007
|
+
# @!attribute [rw] configuration_definitions
|
1008
|
+
# The definition of the Quick Setup configuration that the
|
1009
|
+
# configuration manager deploys.
|
1010
|
+
# @return [Array<Types::ConfigurationDefinitionInput>]
|
1011
|
+
#
|
1012
|
+
# @!attribute [rw] description
|
1013
|
+
# A description of the configuration manager.
|
1014
|
+
# @return [String]
|
1015
|
+
#
|
1016
|
+
# @!attribute [rw] name
|
1017
|
+
# A name for the configuration manager.
|
1018
|
+
# @return [String]
|
1019
|
+
#
|
1020
|
+
# @!attribute [rw] tags
|
1021
|
+
# Key-value pairs of metadata to assign to the configuration manager.
|
1022
|
+
# @return [Hash<String,String>]
|
1023
|
+
#
|
1024
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/CreateConfigurationManagerInput AWS API Documentation
|
1025
|
+
#
|
1026
|
+
class CreateConfigurationManagerInput < Struct.new(
|
1027
|
+
:configuration_definitions,
|
1028
|
+
:description,
|
1029
|
+
:name,
|
1030
|
+
:tags)
|
1031
|
+
SENSITIVE = [:tags]
|
1032
|
+
include Aws::Structure
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
# @!attribute [rw] manager_arn
|
1036
|
+
# The ARN for the newly created configuration manager.
|
1037
|
+
# @return [String]
|
1038
|
+
#
|
1039
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/CreateConfigurationManagerOutput AWS API Documentation
|
1040
|
+
#
|
1041
|
+
class CreateConfigurationManagerOutput < Struct.new(
|
1042
|
+
:manager_arn)
|
1043
|
+
SENSITIVE = []
|
1044
|
+
include Aws::Structure
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
# @!attribute [rw] manager_arn
|
1048
|
+
# The ID of the configuration manager.
|
1049
|
+
# @return [String]
|
1050
|
+
#
|
1051
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/DeleteConfigurationManagerInput AWS API Documentation
|
1052
|
+
#
|
1053
|
+
class DeleteConfigurationManagerInput < Struct.new(
|
1054
|
+
:manager_arn)
|
1055
|
+
SENSITIVE = []
|
1056
|
+
include Aws::Structure
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
# A key-value pair to filter results.
|
1060
|
+
#
|
1061
|
+
# @!attribute [rw] key
|
1062
|
+
# The key for the filter.
|
1063
|
+
# @return [String]
|
1064
|
+
#
|
1065
|
+
# @!attribute [rw] values
|
1066
|
+
# The values for the filter keys.
|
1067
|
+
# @return [Array<String>]
|
1068
|
+
#
|
1069
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/Filter AWS API Documentation
|
1070
|
+
#
|
1071
|
+
class Filter < Struct.new(
|
1072
|
+
:key,
|
1073
|
+
:values)
|
1074
|
+
SENSITIVE = []
|
1075
|
+
include Aws::Structure
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
# @!attribute [rw] manager_arn
|
1079
|
+
# The ARN of the configuration manager.
|
1080
|
+
# @return [String]
|
1081
|
+
#
|
1082
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/GetConfigurationManagerInput AWS API Documentation
|
1083
|
+
#
|
1084
|
+
class GetConfigurationManagerInput < Struct.new(
|
1085
|
+
:manager_arn)
|
1086
|
+
SENSITIVE = []
|
1087
|
+
include Aws::Structure
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
# @!attribute [rw] configuration_definitions
|
1091
|
+
# The configuration definitions association with the configuration
|
1092
|
+
# manager.
|
1093
|
+
# @return [Array<Types::ConfigurationDefinition>]
|
1094
|
+
#
|
1095
|
+
# @!attribute [rw] created_at
|
1096
|
+
# The datetime stamp when the configuration manager was created.
|
1097
|
+
# @return [Time]
|
1098
|
+
#
|
1099
|
+
# @!attribute [rw] description
|
1100
|
+
# The description of the configuration manager.
|
1101
|
+
# @return [String]
|
1102
|
+
#
|
1103
|
+
# @!attribute [rw] last_modified_at
|
1104
|
+
# The datetime stamp when the configuration manager was last updated.
|
1105
|
+
# @return [Time]
|
1106
|
+
#
|
1107
|
+
# @!attribute [rw] manager_arn
|
1108
|
+
# The ARN of the configuration manager.
|
1109
|
+
# @return [String]
|
1110
|
+
#
|
1111
|
+
# @!attribute [rw] name
|
1112
|
+
# The name of the configuration manager.
|
1113
|
+
# @return [String]
|
1114
|
+
#
|
1115
|
+
# @!attribute [rw] status_summaries
|
1116
|
+
# A summary of the state of the configuration manager. This includes
|
1117
|
+
# deployment statuses, association statuses, drift statuses, health
|
1118
|
+
# checks, and more.
|
1119
|
+
# @return [Array<Types::StatusSummary>]
|
1120
|
+
#
|
1121
|
+
# @!attribute [rw] tags
|
1122
|
+
# Key-value pairs of metadata to assign to the configuration manager.
|
1123
|
+
# @return [Hash<String,String>]
|
1124
|
+
#
|
1125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/GetConfigurationManagerOutput AWS API Documentation
|
1126
|
+
#
|
1127
|
+
class GetConfigurationManagerOutput < Struct.new(
|
1128
|
+
:configuration_definitions,
|
1129
|
+
:created_at,
|
1130
|
+
:description,
|
1131
|
+
:last_modified_at,
|
1132
|
+
:manager_arn,
|
1133
|
+
:name,
|
1134
|
+
:status_summaries,
|
1135
|
+
:tags)
|
1136
|
+
SENSITIVE = [:tags]
|
1137
|
+
include Aws::Structure
|
1138
|
+
end
|
1139
|
+
|
1140
|
+
# @!attribute [rw] service_settings
|
1141
|
+
# Returns details about the settings for Quick Setup in the requesting
|
1142
|
+
# Amazon Web Services account and Amazon Web Services Region.
|
1143
|
+
# @return [Types::ServiceSettings]
|
1144
|
+
#
|
1145
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/GetServiceSettingsOutput AWS API Documentation
|
1146
|
+
#
|
1147
|
+
class GetServiceSettingsOutput < Struct.new(
|
1148
|
+
:service_settings)
|
1149
|
+
SENSITIVE = []
|
1150
|
+
include Aws::Structure
|
1151
|
+
end
|
1152
|
+
|
1153
|
+
# An error occurred on the server side.
|
1154
|
+
#
|
1155
|
+
# @!attribute [rw] message
|
1156
|
+
# @return [String]
|
1157
|
+
#
|
1158
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/InternalServerException AWS API Documentation
|
1159
|
+
#
|
1160
|
+
class InternalServerException < Struct.new(
|
1161
|
+
:message)
|
1162
|
+
SENSITIVE = []
|
1163
|
+
include Aws::Structure
|
1164
|
+
end
|
1165
|
+
|
1166
|
+
# @!attribute [rw] filters
|
1167
|
+
# Filters the results returned by the request.
|
1168
|
+
# @return [Array<Types::Filter>]
|
1169
|
+
#
|
1170
|
+
# @!attribute [rw] max_items
|
1171
|
+
# Specifies the maximum number of configuration managers that are
|
1172
|
+
# returned by the request.
|
1173
|
+
# @return [Integer]
|
1174
|
+
#
|
1175
|
+
# @!attribute [rw] starting_token
|
1176
|
+
# The token to use when requesting a specific set of items from a
|
1177
|
+
# list.
|
1178
|
+
# @return [String]
|
1179
|
+
#
|
1180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ListConfigurationManagersInput AWS API Documentation
|
1181
|
+
#
|
1182
|
+
class ListConfigurationManagersInput < Struct.new(
|
1183
|
+
:filters,
|
1184
|
+
:max_items,
|
1185
|
+
:starting_token)
|
1186
|
+
SENSITIVE = []
|
1187
|
+
include Aws::Structure
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
# @!attribute [rw] configuration_managers_list
|
1191
|
+
# The configuration managers returned by the request.
|
1192
|
+
# @return [Array<Types::ConfigurationManagerSummary>]
|
1193
|
+
#
|
1194
|
+
# @!attribute [rw] next_token
|
1195
|
+
# The token to use when requesting the next set of configuration
|
1196
|
+
# managers. If there are no additional operations to return, the
|
1197
|
+
# string is empty.
|
1198
|
+
# @return [String]
|
1199
|
+
#
|
1200
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ListConfigurationManagersOutput AWS API Documentation
|
1201
|
+
#
|
1202
|
+
class ListConfigurationManagersOutput < Struct.new(
|
1203
|
+
:configuration_managers_list,
|
1204
|
+
:next_token)
|
1205
|
+
SENSITIVE = []
|
1206
|
+
include Aws::Structure
|
1207
|
+
end
|
1208
|
+
|
1209
|
+
# @!attribute [rw] quick_setup_type_list
|
1210
|
+
# An array of Quick Setup types.
|
1211
|
+
# @return [Array<Types::QuickSetupTypeOutput>]
|
1212
|
+
#
|
1213
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ListQuickSetupTypesOutput AWS API Documentation
|
1214
|
+
#
|
1215
|
+
class ListQuickSetupTypesOutput < Struct.new(
|
1216
|
+
:quick_setup_type_list)
|
1217
|
+
SENSITIVE = []
|
1218
|
+
include Aws::Structure
|
1219
|
+
end
|
1220
|
+
|
1221
|
+
# @!attribute [rw] resource_arn
|
1222
|
+
# The ARN of the resource the tag is assigned to.
|
1223
|
+
# @return [String]
|
1224
|
+
#
|
1225
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ListTagsForResourceRequest AWS API Documentation
|
1226
|
+
#
|
1227
|
+
class ListTagsForResourceRequest < Struct.new(
|
1228
|
+
:resource_arn)
|
1229
|
+
SENSITIVE = []
|
1230
|
+
include Aws::Structure
|
1231
|
+
end
|
1232
|
+
|
1233
|
+
# @!attribute [rw] tags
|
1234
|
+
# Key-value pairs of metadata assigned to the resource.
|
1235
|
+
# @return [Array<Types::TagEntry>]
|
1236
|
+
#
|
1237
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ListTagsForResourceResponse AWS API Documentation
|
1238
|
+
#
|
1239
|
+
class ListTagsForResourceResponse < Struct.new(
|
1240
|
+
:tags)
|
1241
|
+
SENSITIVE = [:tags]
|
1242
|
+
include Aws::Structure
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
# Information about the Quick Setup type.
|
1246
|
+
#
|
1247
|
+
# @!attribute [rw] latest_version
|
1248
|
+
# The latest version number of the configuration.
|
1249
|
+
# @return [String]
|
1250
|
+
#
|
1251
|
+
# @!attribute [rw] type
|
1252
|
+
# The type of the Quick Setup configuration.
|
1253
|
+
# @return [String]
|
1254
|
+
#
|
1255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/QuickSetupTypeOutput AWS API Documentation
|
1256
|
+
#
|
1257
|
+
class QuickSetupTypeOutput < Struct.new(
|
1258
|
+
:latest_version,
|
1259
|
+
:type)
|
1260
|
+
SENSITIVE = []
|
1261
|
+
include Aws::Structure
|
1262
|
+
end
|
1263
|
+
|
1264
|
+
# The resource couldn't be found. Check the ID or name and try again.
|
1265
|
+
#
|
1266
|
+
# @!attribute [rw] message
|
1267
|
+
# @return [String]
|
1268
|
+
#
|
1269
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ResourceNotFoundException AWS API Documentation
|
1270
|
+
#
|
1271
|
+
class ResourceNotFoundException < Struct.new(
|
1272
|
+
:message)
|
1273
|
+
SENSITIVE = []
|
1274
|
+
include Aws::Structure
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
# Settings configured for Quick Setup.
|
1278
|
+
#
|
1279
|
+
# @!attribute [rw] explorer_enabling_role_arn
|
1280
|
+
# The IAM role used to enable Explorer.
|
1281
|
+
# @return [String]
|
1282
|
+
#
|
1283
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ServiceSettings AWS API Documentation
|
1284
|
+
#
|
1285
|
+
class ServiceSettings < Struct.new(
|
1286
|
+
:explorer_enabling_role_arn)
|
1287
|
+
SENSITIVE = []
|
1288
|
+
include Aws::Structure
|
1289
|
+
end
|
1290
|
+
|
1291
|
+
# A summarized description of the status.
|
1292
|
+
#
|
1293
|
+
# @!attribute [rw] last_updated_at
|
1294
|
+
# The datetime stamp when the status was last updated.
|
1295
|
+
# @return [Time]
|
1296
|
+
#
|
1297
|
+
# @!attribute [rw] status
|
1298
|
+
# The current status.
|
1299
|
+
# @return [String]
|
1300
|
+
#
|
1301
|
+
# @!attribute [rw] status_details
|
1302
|
+
# Details about the status.
|
1303
|
+
# @return [Hash<String,String>]
|
1304
|
+
#
|
1305
|
+
# @!attribute [rw] status_message
|
1306
|
+
# When applicable, returns an informational message relevant to the
|
1307
|
+
# current status and status type of the status summary object. We
|
1308
|
+
# don't recommend implementing parsing logic around this value since
|
1309
|
+
# the messages returned can vary in format.
|
1310
|
+
# @return [String]
|
1311
|
+
#
|
1312
|
+
# @!attribute [rw] status_type
|
1313
|
+
# The type of a status summary.
|
1314
|
+
# @return [String]
|
1315
|
+
#
|
1316
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/StatusSummary AWS API Documentation
|
1317
|
+
#
|
1318
|
+
class StatusSummary < Struct.new(
|
1319
|
+
:last_updated_at,
|
1320
|
+
:status,
|
1321
|
+
:status_details,
|
1322
|
+
:status_message,
|
1323
|
+
:status_type)
|
1324
|
+
SENSITIVE = []
|
1325
|
+
include Aws::Structure
|
1326
|
+
end
|
1327
|
+
|
1328
|
+
# Key-value pairs of metadata.
|
1329
|
+
#
|
1330
|
+
# @!attribute [rw] key
|
1331
|
+
# The key for the tag.
|
1332
|
+
# @return [String]
|
1333
|
+
#
|
1334
|
+
# @!attribute [rw] value
|
1335
|
+
# The value for the tag.
|
1336
|
+
# @return [String]
|
1337
|
+
#
|
1338
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/TagEntry AWS API Documentation
|
1339
|
+
#
|
1340
|
+
class TagEntry < Struct.new(
|
1341
|
+
:key,
|
1342
|
+
:value)
|
1343
|
+
SENSITIVE = []
|
1344
|
+
include Aws::Structure
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
# @!attribute [rw] resource_arn
|
1348
|
+
# The ARN of the resource to tag.
|
1349
|
+
# @return [String]
|
1350
|
+
#
|
1351
|
+
# @!attribute [rw] tags
|
1352
|
+
# Key-value pairs of metadata to assign to the resource.
|
1353
|
+
# @return [Hash<String,String>]
|
1354
|
+
#
|
1355
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/TagResourceInput AWS API Documentation
|
1356
|
+
#
|
1357
|
+
class TagResourceInput < Struct.new(
|
1358
|
+
:resource_arn,
|
1359
|
+
:tags)
|
1360
|
+
SENSITIVE = [:tags]
|
1361
|
+
include Aws::Structure
|
1362
|
+
end
|
1363
|
+
|
1364
|
+
# The request or operation exceeds the maximum allowed request rate per
|
1365
|
+
# Amazon Web Services account and Amazon Web Services Region.
|
1366
|
+
#
|
1367
|
+
# @!attribute [rw] message
|
1368
|
+
# @return [String]
|
1369
|
+
#
|
1370
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ThrottlingException AWS API Documentation
|
1371
|
+
#
|
1372
|
+
class ThrottlingException < Struct.new(
|
1373
|
+
:message)
|
1374
|
+
SENSITIVE = []
|
1375
|
+
include Aws::Structure
|
1376
|
+
end
|
1377
|
+
|
1378
|
+
# @!attribute [rw] resource_arn
|
1379
|
+
# The ARN of the resource to remove tags from.
|
1380
|
+
# @return [String]
|
1381
|
+
#
|
1382
|
+
# @!attribute [rw] tag_keys
|
1383
|
+
# The keys of the tags to remove from the resource.
|
1384
|
+
# @return [Array<String>]
|
1385
|
+
#
|
1386
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/UntagResourceInput AWS API Documentation
|
1387
|
+
#
|
1388
|
+
class UntagResourceInput < Struct.new(
|
1389
|
+
:resource_arn,
|
1390
|
+
:tag_keys)
|
1391
|
+
SENSITIVE = []
|
1392
|
+
include Aws::Structure
|
1393
|
+
end
|
1394
|
+
|
1395
|
+
# @!attribute [rw] id
|
1396
|
+
# The ID of the configuration definition you want to update.
|
1397
|
+
# @return [String]
|
1398
|
+
#
|
1399
|
+
# @!attribute [rw] local_deployment_administration_role_arn
|
1400
|
+
# The ARN of the IAM role used to administrate local configuration
|
1401
|
+
# deployments.
|
1402
|
+
# @return [String]
|
1403
|
+
#
|
1404
|
+
# @!attribute [rw] local_deployment_execution_role_name
|
1405
|
+
# The name of the IAM role used to deploy local configurations.
|
1406
|
+
# @return [String]
|
1407
|
+
#
|
1408
|
+
# @!attribute [rw] manager_arn
|
1409
|
+
# The ARN of the configuration manager associated with the definition
|
1410
|
+
# to update.
|
1411
|
+
# @return [String]
|
1412
|
+
#
|
1413
|
+
# @!attribute [rw] parameters
|
1414
|
+
# The parameters for the configuration definition type.
|
1415
|
+
# @return [Hash<String,String>]
|
1416
|
+
#
|
1417
|
+
# @!attribute [rw] type_version
|
1418
|
+
# The version of the Quick Setup type to use.
|
1419
|
+
# @return [String]
|
1420
|
+
#
|
1421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/UpdateConfigurationDefinitionInput AWS API Documentation
|
1422
|
+
#
|
1423
|
+
class UpdateConfigurationDefinitionInput < Struct.new(
|
1424
|
+
:id,
|
1425
|
+
:local_deployment_administration_role_arn,
|
1426
|
+
:local_deployment_execution_role_name,
|
1427
|
+
:manager_arn,
|
1428
|
+
:parameters,
|
1429
|
+
:type_version)
|
1430
|
+
SENSITIVE = []
|
1431
|
+
include Aws::Structure
|
1432
|
+
end
|
1433
|
+
|
1434
|
+
# @!attribute [rw] description
|
1435
|
+
# A description of the configuration manager.
|
1436
|
+
# @return [String]
|
1437
|
+
#
|
1438
|
+
# @!attribute [rw] manager_arn
|
1439
|
+
# The ARN of the configuration manager.
|
1440
|
+
# @return [String]
|
1441
|
+
#
|
1442
|
+
# @!attribute [rw] name
|
1443
|
+
# A name for the configuration manager.
|
1444
|
+
# @return [String]
|
1445
|
+
#
|
1446
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/UpdateConfigurationManagerInput AWS API Documentation
|
1447
|
+
#
|
1448
|
+
class UpdateConfigurationManagerInput < Struct.new(
|
1449
|
+
:description,
|
1450
|
+
:manager_arn,
|
1451
|
+
:name)
|
1452
|
+
SENSITIVE = []
|
1453
|
+
include Aws::Structure
|
1454
|
+
end
|
1455
|
+
|
1456
|
+
# @!attribute [rw] explorer_enabling_role_arn
|
1457
|
+
# The IAM role used to enable Explorer.
|
1458
|
+
# @return [String]
|
1459
|
+
#
|
1460
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/UpdateServiceSettingsInput AWS API Documentation
|
1461
|
+
#
|
1462
|
+
class UpdateServiceSettingsInput < Struct.new(
|
1463
|
+
:explorer_enabling_role_arn)
|
1464
|
+
SENSITIVE = []
|
1465
|
+
include Aws::Structure
|
1466
|
+
end
|
1467
|
+
|
1468
|
+
# The request is invalid. Verify the values provided for the request
|
1469
|
+
# parameters are accurate.
|
1470
|
+
#
|
1471
|
+
# @!attribute [rw] message
|
1472
|
+
# @return [String]
|
1473
|
+
#
|
1474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-quicksetup-2018-05-10/ValidationException AWS API Documentation
|
1475
|
+
#
|
1476
|
+
class ValidationException < Struct.new(
|
1477
|
+
:message)
|
1478
|
+
SENSITIVE = []
|
1479
|
+
include Aws::Structure
|
1480
|
+
end
|
1481
|
+
|
1482
|
+
end
|
1483
|
+
end
|