aws-sdk-ssm 1.73.0 → 1.74.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 +1 -1
- data/lib/aws-sdk-ssm/client.rb +317 -154
- data/lib/aws-sdk-ssm/client_api.rb +8 -0
- data/lib/aws-sdk-ssm/resource.rb +1 -7
- data/lib/aws-sdk-ssm/types.rb +467 -273
- metadata +4 -3
@@ -66,6 +66,7 @@ module Aws::SSM
|
|
66
66
|
AssociationStatus = Shapes::StructureShape.new(name: 'AssociationStatus')
|
67
67
|
AssociationStatusAggregatedCount = Shapes::MapShape.new(name: 'AssociationStatusAggregatedCount')
|
68
68
|
AssociationStatusName = Shapes::StringShape.new(name: 'AssociationStatusName')
|
69
|
+
AssociationSyncCompliance = Shapes::StringShape.new(name: 'AssociationSyncCompliance')
|
69
70
|
AssociationVersion = Shapes::StringShape.new(name: 'AssociationVersion')
|
70
71
|
AssociationVersionInfo = Shapes::StructureShape.new(name: 'AssociationVersionInfo')
|
71
72
|
AssociationVersionLimitExceeded = Shapes::StructureShape.new(name: 'AssociationVersionLimitExceeded')
|
@@ -171,6 +172,7 @@ module Aws::SSM
|
|
171
172
|
ComplianceSummaryItemList = Shapes::ListShape.new(name: 'ComplianceSummaryItemList')
|
172
173
|
ComplianceTypeCountLimitExceededException = Shapes::StructureShape.new(name: 'ComplianceTypeCountLimitExceededException')
|
173
174
|
ComplianceTypeName = Shapes::StringShape.new(name: 'ComplianceTypeName')
|
175
|
+
ComplianceUploadType = Shapes::StringShape.new(name: 'ComplianceUploadType')
|
174
176
|
CompliantSummary = Shapes::StructureShape.new(name: 'CompliantSummary')
|
175
177
|
ComputerName = Shapes::StringShape.new(name: 'ComputerName')
|
176
178
|
ConnectionStatus = Shapes::StringShape.new(name: 'ConnectionStatus')
|
@@ -1106,6 +1108,7 @@ module Aws::SSM
|
|
1106
1108
|
AssociationDescription.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
|
1107
1109
|
AssociationDescription.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
1108
1110
|
AssociationDescription.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1111
|
+
AssociationDescription.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
1109
1112
|
AssociationDescription.struct_class = Types::AssociationDescription
|
1110
1113
|
|
1111
1114
|
AssociationDescriptionList.member = Shapes::ShapeRef.new(shape: AssociationDescription)
|
@@ -1193,6 +1196,7 @@ module Aws::SSM
|
|
1193
1196
|
AssociationVersionInfo.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
|
1194
1197
|
AssociationVersionInfo.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
1195
1198
|
AssociationVersionInfo.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1199
|
+
AssociationVersionInfo.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
1196
1200
|
AssociationVersionInfo.struct_class = Types::AssociationVersionInfo
|
1197
1201
|
|
1198
1202
|
AssociationVersionLimitExceeded.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -1477,6 +1481,7 @@ module Aws::SSM
|
|
1477
1481
|
CreateAssociationBatchRequestEntry.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
|
1478
1482
|
CreateAssociationBatchRequestEntry.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
1479
1483
|
CreateAssociationBatchRequestEntry.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1484
|
+
CreateAssociationBatchRequestEntry.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
1480
1485
|
CreateAssociationBatchRequestEntry.struct_class = Types::CreateAssociationBatchRequestEntry
|
1481
1486
|
|
1482
1487
|
CreateAssociationBatchResult.add_member(:successful, Shapes::ShapeRef.new(shape: AssociationDescriptionList, location_name: "Successful"))
|
@@ -1495,6 +1500,7 @@ module Aws::SSM
|
|
1495
1500
|
CreateAssociationRequest.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
|
1496
1501
|
CreateAssociationRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
1497
1502
|
CreateAssociationRequest.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
1503
|
+
CreateAssociationRequest.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
1498
1504
|
CreateAssociationRequest.struct_class = Types::CreateAssociationRequest
|
1499
1505
|
|
1500
1506
|
CreateAssociationResult.add_member(:association_description, Shapes::ShapeRef.new(shape: AssociationDescription, location_name: "AssociationDescription"))
|
@@ -3392,6 +3398,7 @@ module Aws::SSM
|
|
3392
3398
|
PutComplianceItemsRequest.add_member(:execution_summary, Shapes::ShapeRef.new(shape: ComplianceExecutionSummary, required: true, location_name: "ExecutionSummary"))
|
3393
3399
|
PutComplianceItemsRequest.add_member(:items, Shapes::ShapeRef.new(shape: ComplianceItemEntryList, required: true, location_name: "Items"))
|
3394
3400
|
PutComplianceItemsRequest.add_member(:item_content_hash, Shapes::ShapeRef.new(shape: ComplianceItemContentHash, location_name: "ItemContentHash"))
|
3401
|
+
PutComplianceItemsRequest.add_member(:upload_type, Shapes::ShapeRef.new(shape: ComplianceUploadType, location_name: "UploadType", metadata: {"box"=>true}))
|
3395
3402
|
PutComplianceItemsRequest.struct_class = Types::PutComplianceItemsRequest
|
3396
3403
|
|
3397
3404
|
PutComplianceItemsResult.struct_class = Types::PutComplianceItemsResult
|
@@ -3842,6 +3849,7 @@ module Aws::SSM
|
|
3842
3849
|
UpdateAssociationRequest.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
|
3843
3850
|
UpdateAssociationRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
3844
3851
|
UpdateAssociationRequest.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
3852
|
+
UpdateAssociationRequest.add_member(:sync_compliance, Shapes::ShapeRef.new(shape: AssociationSyncCompliance, location_name: "SyncCompliance"))
|
3845
3853
|
UpdateAssociationRequest.struct_class = Types::UpdateAssociationRequest
|
3846
3854
|
|
3847
3855
|
UpdateAssociationResult.add_member(:association_description, Shapes::ShapeRef.new(shape: AssociationDescription, location_name: "AssociationDescription"))
|
data/lib/aws-sdk-ssm/resource.rb
CHANGED
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::SSM
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::SSM::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::SSM::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::SSM::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -306,8 +306,8 @@ module Aws::SSM
|
|
306
306
|
# @return [String]
|
307
307
|
#
|
308
308
|
# @!attribute [rw] output_location
|
309
|
-
# An
|
310
|
-
#
|
309
|
+
# An S3 bucket where you want to store the output details of the
|
310
|
+
# request.
|
311
311
|
# @return [Types::InstanceAssociationOutputLocation]
|
312
312
|
#
|
313
313
|
# @!attribute [rw] last_execution_date
|
@@ -357,6 +357,22 @@ module Aws::SSM
|
|
357
357
|
# The severity level that is assigned to the association.
|
358
358
|
# @return [String]
|
359
359
|
#
|
360
|
+
# @!attribute [rw] sync_compliance
|
361
|
+
# The mode for generating association compliance. You can specify
|
362
|
+
# `AUTO` or `MANUAL`. In `AUTO` mode, the system uses the status of
|
363
|
+
# the association execution to determine the compliance status. If the
|
364
|
+
# association execution runs successfully, then the association is
|
365
|
+
# `COMPLIANT`. If the association execution doesn't run successfully,
|
366
|
+
# the association is `NON-COMPLIANT`.
|
367
|
+
#
|
368
|
+
# In `MANUAL` mode, you must specify the `AssociationId` as a
|
369
|
+
# parameter for the PutComplianceItems API action. In this case,
|
370
|
+
# compliance data is not managed by State Manager. It is managed by
|
371
|
+
# your direct call to the PutComplianceItems API action.
|
372
|
+
#
|
373
|
+
# By default, all associations use `AUTO` mode.
|
374
|
+
# @return [String]
|
375
|
+
#
|
360
376
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationDescription AWS API Documentation
|
361
377
|
#
|
362
378
|
class AssociationDescription < Struct.new(
|
@@ -379,7 +395,8 @@ module Aws::SSM
|
|
379
395
|
:association_name,
|
380
396
|
:max_errors,
|
381
397
|
:max_concurrency,
|
382
|
-
:compliance_severity
|
398
|
+
:compliance_severity,
|
399
|
+
:sync_compliance)
|
383
400
|
include Aws::Structure
|
384
401
|
end
|
385
402
|
|
@@ -575,7 +592,7 @@ module Aws::SSM
|
|
575
592
|
# data as a hash:
|
576
593
|
#
|
577
594
|
# {
|
578
|
-
# key: "InstanceId", # required, accepts InstanceId, Name, AssociationId, AssociationStatusName, LastExecutedBefore, LastExecutedAfter, AssociationName
|
595
|
+
# key: "InstanceId", # required, accepts InstanceId, Name, AssociationId, AssociationStatusName, LastExecutedBefore, LastExecutedAfter, AssociationName, ResourceGroupName
|
579
596
|
# value: "AssociationFilterValue", # required
|
580
597
|
# }
|
581
598
|
#
|
@@ -748,6 +765,22 @@ module Aws::SSM
|
|
748
765
|
# The severity level that is assigned to the association.
|
749
766
|
# @return [String]
|
750
767
|
#
|
768
|
+
# @!attribute [rw] sync_compliance
|
769
|
+
# The mode for generating association compliance. You can specify
|
770
|
+
# `AUTO` or `MANUAL`. In `AUTO` mode, the system uses the status of
|
771
|
+
# the association execution to determine the compliance status. If the
|
772
|
+
# association execution runs successfully, then the association is
|
773
|
+
# `COMPLIANT`. If the association execution doesn't run successfully,
|
774
|
+
# the association is `NON-COMPLIANT`.
|
775
|
+
#
|
776
|
+
# In `MANUAL` mode, you must specify the `AssociationId` as a
|
777
|
+
# parameter for the PutComplianceItems API action. In this case,
|
778
|
+
# compliance data is not managed by State Manager. It is managed by
|
779
|
+
# your direct call to the PutComplianceItems API action.
|
780
|
+
#
|
781
|
+
# By default, all associations use `AUTO` mode.
|
782
|
+
# @return [String]
|
783
|
+
#
|
751
784
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AssociationVersionInfo AWS API Documentation
|
752
785
|
#
|
753
786
|
class AssociationVersionInfo < Struct.new(
|
@@ -763,7 +796,8 @@ module Aws::SSM
|
|
763
796
|
:association_name,
|
764
797
|
:max_errors,
|
765
798
|
:max_concurrency,
|
766
|
-
:compliance_severity
|
799
|
+
:compliance_severity,
|
800
|
+
:sync_compliance)
|
767
801
|
include Aws::Structure
|
768
802
|
end
|
769
803
|
|
@@ -1135,7 +1169,7 @@ module Aws::SSM
|
|
1135
1169
|
# @return [String]
|
1136
1170
|
#
|
1137
1171
|
# @!attribute [rw] log_file
|
1138
|
-
# An
|
1172
|
+
# An S3 bucket where execution information is stored.
|
1139
1173
|
# @return [String]
|
1140
1174
|
#
|
1141
1175
|
# @!attribute [rw] outputs
|
@@ -1197,12 +1231,12 @@ module Aws::SSM
|
|
1197
1231
|
# Use this filter with DescribeAutomationExecutions. Specify either
|
1198
1232
|
# Local or CrossAccount. CrossAccount is an Automation that runs in
|
1199
1233
|
# multiple AWS Regions and accounts. For more information, see
|
1200
|
-
# [
|
1201
|
-
# the *AWS Systems Manager User Guide*.
|
1234
|
+
# [Running Automation workflows in multiple AWS Regions and
|
1235
|
+
# accounts][1] in the *AWS Systems Manager User Guide*.
|
1202
1236
|
#
|
1203
1237
|
#
|
1204
1238
|
#
|
1205
|
-
# [1]:
|
1239
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-automation-multiple-accounts-and-regions.html
|
1206
1240
|
# @return [String]
|
1207
1241
|
#
|
1208
1242
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AutomationExecutionMetadata AWS API Documentation
|
@@ -1403,7 +1437,7 @@ module Aws::SSM
|
|
1403
1437
|
# more information than Status because it includes states resulting
|
1404
1438
|
# from error and concurrency control parameters. StatusDetails can
|
1405
1439
|
# show different results than Status. For more information about these
|
1406
|
-
# statuses, see [Understanding
|
1440
|
+
# statuses, see [Understanding command statuses][1] in the *AWS
|
1407
1441
|
# Systems Manager User Guide*. StatusDetails can be one of the
|
1408
1442
|
# following values:
|
1409
1443
|
#
|
@@ -1441,13 +1475,13 @@ module Aws::SSM
|
|
1441
1475
|
#
|
1442
1476
|
#
|
1443
1477
|
#
|
1444
|
-
# [1]:
|
1478
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html
|
1445
1479
|
# @return [String]
|
1446
1480
|
#
|
1447
1481
|
# @!attribute [rw] output_s3_region
|
1448
1482
|
# (Deprecated) You can no longer specify this parameter. The system
|
1449
1483
|
# ignores it. Instead, Systems Manager automatically determines the
|
1450
|
-
#
|
1484
|
+
# Region of the S3 bucket.
|
1451
1485
|
# @return [String]
|
1452
1486
|
#
|
1453
1487
|
# @!attribute [rw] output_s3_bucket_name
|
@@ -1466,12 +1500,12 @@ module Aws::SSM
|
|
1466
1500
|
# at the same time. You can specify a number of instances, such as 10,
|
1467
1501
|
# or a percentage of instances, such as 10%. The default value is 50.
|
1468
1502
|
# For more information about how to use MaxConcurrency, see [Running
|
1469
|
-
#
|
1503
|
+
# commands using Systems Manager Run Command][1] in the *AWS Systems
|
1470
1504
|
# Manager User Guide*.
|
1471
1505
|
#
|
1472
1506
|
#
|
1473
1507
|
#
|
1474
|
-
# [1]:
|
1508
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/run-command.html
|
1475
1509
|
# @return [String]
|
1476
1510
|
#
|
1477
1511
|
# @!attribute [rw] max_errors
|
@@ -1479,12 +1513,12 @@ module Aws::SSM
|
|
1479
1513
|
# the command to additional targets. You can specify a number of
|
1480
1514
|
# errors, such as 10, or a percentage or errors, such as 10%. The
|
1481
1515
|
# default value is 0. For more information about how to use MaxErrors,
|
1482
|
-
# see [Running
|
1516
|
+
# see [Running commands using Systems Manager Run Command][1] in the
|
1483
1517
|
# *AWS Systems Manager User Guide*.
|
1484
1518
|
#
|
1485
1519
|
#
|
1486
1520
|
#
|
1487
|
-
# [1]:
|
1521
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/run-command.html
|
1488
1522
|
# @return [String]
|
1489
1523
|
#
|
1490
1524
|
# @!attribute [rw] target_count
|
@@ -1632,9 +1666,9 @@ module Aws::SSM
|
|
1632
1666
|
# @return [String]
|
1633
1667
|
#
|
1634
1668
|
# @!attribute [rw] instance_name
|
1635
|
-
# The name of the invocation target. For
|
1636
|
-
#
|
1637
|
-
#
|
1669
|
+
# The name of the invocation target. For EC2 instances this is the
|
1670
|
+
# value for the aws:Name tag. For on-premises instances, this is the
|
1671
|
+
# name of the instance.
|
1638
1672
|
# @return [String]
|
1639
1673
|
#
|
1640
1674
|
# @!attribute [rw] comment
|
@@ -1664,7 +1698,7 @@ module Aws::SSM
|
|
1664
1698
|
# information than Status because it includes states resulting from
|
1665
1699
|
# error and concurrency control parameters. StatusDetails can show
|
1666
1700
|
# different results than Status. For more information about these
|
1667
|
-
# statuses, see [Understanding
|
1701
|
+
# statuses, see [Understanding command statuses][1] in the *AWS
|
1668
1702
|
# Systems Manager User Guide*. StatusDetails can be one of the
|
1669
1703
|
# following values:
|
1670
1704
|
#
|
@@ -1709,7 +1743,7 @@ module Aws::SSM
|
|
1709
1743
|
#
|
1710
1744
|
#
|
1711
1745
|
#
|
1712
|
-
# [1]:
|
1746
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html
|
1713
1747
|
# @return [String]
|
1714
1748
|
#
|
1715
1749
|
# @!attribute [rw] trace_output
|
@@ -1717,19 +1751,17 @@ module Aws::SSM
|
|
1717
1751
|
# @return [String]
|
1718
1752
|
#
|
1719
1753
|
# @!attribute [rw] standard_output_url
|
1720
|
-
# The URL to the plugin's StdOut file in Amazon S3, if the
|
1721
|
-
#
|
1754
|
+
# The URL to the plugin's StdOut file in Amazon S3, if the S3 bucket
|
1755
|
+
# was defined for the parent command. For an invocation,
|
1722
1756
|
# StandardOutputUrl is populated if there is just one plugin defined
|
1723
|
-
# for the command, and the
|
1724
|
-
# command.
|
1757
|
+
# for the command, and the S3 bucket was defined for the command.
|
1725
1758
|
# @return [String]
|
1726
1759
|
#
|
1727
1760
|
# @!attribute [rw] standard_error_url
|
1728
|
-
# The URL to the plugin's StdErr file in Amazon S3, if the
|
1729
|
-
#
|
1761
|
+
# The URL to the plugin's StdErr file in Amazon S3, if the S3 bucket
|
1762
|
+
# was defined for the parent command. For an invocation,
|
1730
1763
|
# StandardErrorUrl is populated if there is just one plugin defined
|
1731
|
-
# for the command, and the
|
1732
|
-
# command.
|
1764
|
+
# for the command, and the S3 bucket was defined for the command.
|
1733
1765
|
# @return [String]
|
1734
1766
|
#
|
1735
1767
|
# @!attribute [rw] command_plugins
|
@@ -1792,7 +1824,7 @@ module Aws::SSM
|
|
1792
1824
|
# more information than Status because it includes states resulting
|
1793
1825
|
# from error and concurrency control parameters. StatusDetails can
|
1794
1826
|
# show different results than Status. For more information about these
|
1795
|
-
# statuses, see [Understanding
|
1827
|
+
# statuses, see [Understanding command statuses][1] in the *AWS
|
1796
1828
|
# Systems Manager User Guide*. StatusDetails can be one of the
|
1797
1829
|
# following values:
|
1798
1830
|
#
|
@@ -1837,7 +1869,7 @@ module Aws::SSM
|
|
1837
1869
|
#
|
1838
1870
|
#
|
1839
1871
|
#
|
1840
|
-
# [1]:
|
1872
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html
|
1841
1873
|
# @return [String]
|
1842
1874
|
#
|
1843
1875
|
# @!attribute [rw] response_code
|
@@ -1859,8 +1891,8 @@ module Aws::SSM
|
|
1859
1891
|
#
|
1860
1892
|
# @!attribute [rw] standard_output_url
|
1861
1893
|
# The URL for the complete text written by the plugin to stdout in
|
1862
|
-
# Amazon S3. If the
|
1863
|
-
#
|
1894
|
+
# Amazon S3. If the S3 bucket for the command was not specified, then
|
1895
|
+
# this string is empty.
|
1864
1896
|
# @return [String]
|
1865
1897
|
#
|
1866
1898
|
# @!attribute [rw] standard_error_url
|
@@ -1870,8 +1902,8 @@ module Aws::SSM
|
|
1870
1902
|
#
|
1871
1903
|
# @!attribute [rw] output_s3_region
|
1872
1904
|
# (Deprecated) You can no longer specify this parameter. The system
|
1873
|
-
# ignores it. Instead, Systems Manager automatically determines the
|
1874
|
-
#
|
1905
|
+
# ignores it. Instead, Systems Manager automatically determines the S3
|
1906
|
+
# bucket region.
|
1875
1907
|
# @return [String]
|
1876
1908
|
#
|
1877
1909
|
# @!attribute [rw] output_s3_bucket_name
|
@@ -1881,7 +1913,7 @@ module Aws::SSM
|
|
1881
1913
|
#
|
1882
1914
|
# test\_folder/ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix/i-1234567876543/awsrunShellScript
|
1883
1915
|
#
|
1884
|
-
# test\_folder is the name of the
|
1916
|
+
# test\_folder is the name of the S3 bucket;
|
1885
1917
|
#
|
1886
1918
|
# ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix is the name of the S3
|
1887
1919
|
# prefix;
|
@@ -1898,7 +1930,7 @@ module Aws::SSM
|
|
1898
1930
|
#
|
1899
1931
|
# test\_folder/ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix/i-1234567876543/awsrunShellScript
|
1900
1932
|
#
|
1901
|
-
# test\_folder is the name of the
|
1933
|
+
# test\_folder is the name of the S3 bucket;
|
1902
1934
|
#
|
1903
1935
|
# ab19cb99-a030-46dd-9dfc-8eSAMPLEPre-Fix is the name of the S3
|
1904
1936
|
# prefix;
|
@@ -1967,7 +1999,7 @@ module Aws::SSM
|
|
1967
1999
|
|
1968
2000
|
# Information about the compliance as defined by the resource type. For
|
1969
2001
|
# example, for a patch resource type, `Items` includes information about
|
1970
|
-
# the PatchSeverity, Classification,
|
2002
|
+
# the PatchSeverity, Classification, and so on.
|
1971
2003
|
#
|
1972
2004
|
# @!attribute [rw] compliance_type
|
1973
2005
|
# The compliance type. For example, Association (for a State Manager
|
@@ -2212,12 +2244,12 @@ module Aws::SSM
|
|
2212
2244
|
# to assign to the managed instance. This IAM role must provide
|
2213
2245
|
# AssumeRole permissions for the Systems Manager service principal
|
2214
2246
|
# `ssm.amazonaws.com`. For more information, see [Create an IAM
|
2215
|
-
#
|
2247
|
+
# service role for a hybrid environment][1] in the *AWS Systems
|
2216
2248
|
# Manager User Guide*.
|
2217
2249
|
#
|
2218
2250
|
#
|
2219
2251
|
#
|
2220
|
-
# [1]:
|
2252
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-service-role.html
|
2221
2253
|
# @return [String]
|
2222
2254
|
#
|
2223
2255
|
# @!attribute [rw] registration_limit
|
@@ -2319,6 +2351,7 @@ module Aws::SSM
|
|
2319
2351
|
# max_errors: "MaxErrors",
|
2320
2352
|
# max_concurrency: "MaxConcurrency",
|
2321
2353
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
2354
|
+
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
2322
2355
|
# },
|
2323
2356
|
# ],
|
2324
2357
|
# }
|
@@ -2366,6 +2399,7 @@ module Aws::SSM
|
|
2366
2399
|
# max_errors: "MaxErrors",
|
2367
2400
|
# max_concurrency: "MaxConcurrency",
|
2368
2401
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
2402
|
+
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
2369
2403
|
# }
|
2370
2404
|
#
|
2371
2405
|
# @!attribute [rw] name
|
@@ -2419,8 +2453,7 @@ module Aws::SSM
|
|
2419
2453
|
# @return [String]
|
2420
2454
|
#
|
2421
2455
|
# @!attribute [rw] output_location
|
2422
|
-
# An
|
2423
|
-
# request.
|
2456
|
+
# An S3 bucket where you want to store the results of this request.
|
2424
2457
|
# @return [Types::InstanceAssociationOutputLocation]
|
2425
2458
|
#
|
2426
2459
|
# @!attribute [rw] association_name
|
@@ -2462,6 +2495,22 @@ module Aws::SSM
|
|
2462
2495
|
# The severity level to assign to the association.
|
2463
2496
|
# @return [String]
|
2464
2497
|
#
|
2498
|
+
# @!attribute [rw] sync_compliance
|
2499
|
+
# The mode for generating association compliance. You can specify
|
2500
|
+
# `AUTO` or `MANUAL`. In `AUTO` mode, the system uses the status of
|
2501
|
+
# the association execution to determine the compliance status. If the
|
2502
|
+
# association execution runs successfully, then the association is
|
2503
|
+
# `COMPLIANT`. If the association execution doesn't run successfully,
|
2504
|
+
# the association is `NON-COMPLIANT`.
|
2505
|
+
#
|
2506
|
+
# In `MANUAL` mode, you must specify the `AssociationId` as a
|
2507
|
+
# parameter for the PutComplianceItems API action. In this case,
|
2508
|
+
# compliance data is not managed by State Manager. It is managed by
|
2509
|
+
# your direct call to the PutComplianceItems API action.
|
2510
|
+
#
|
2511
|
+
# By default, all associations use `AUTO` mode.
|
2512
|
+
# @return [String]
|
2513
|
+
#
|
2465
2514
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationBatchRequestEntry AWS API Documentation
|
2466
2515
|
#
|
2467
2516
|
class CreateAssociationBatchRequestEntry < Struct.new(
|
@@ -2476,7 +2525,8 @@ module Aws::SSM
|
|
2476
2525
|
:association_name,
|
2477
2526
|
:max_errors,
|
2478
2527
|
:max_concurrency,
|
2479
|
-
:compliance_severity
|
2528
|
+
:compliance_severity,
|
2529
|
+
:sync_compliance)
|
2480
2530
|
include Aws::Structure
|
2481
2531
|
end
|
2482
2532
|
|
@@ -2525,6 +2575,7 @@ module Aws::SSM
|
|
2525
2575
|
# max_errors: "MaxErrors",
|
2526
2576
|
# max_concurrency: "MaxConcurrency",
|
2527
2577
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
2578
|
+
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
2528
2579
|
# }
|
2529
2580
|
#
|
2530
2581
|
# @!attribute [rw] name
|
@@ -2575,9 +2626,15 @@ module Aws::SSM
|
|
2575
2626
|
# @return [Hash<String,Array<String>>]
|
2576
2627
|
#
|
2577
2628
|
# @!attribute [rw] targets
|
2578
|
-
# The targets
|
2579
|
-
#
|
2580
|
-
#
|
2629
|
+
# The targets for the association. You can target instances by using
|
2630
|
+
# tags, AWS Resource Groups, all instances in an AWS account, or
|
2631
|
+
# individual instance IDs. For more information about choosing targets
|
2632
|
+
# for an association, see [Using targets and rate controls with State
|
2633
|
+
# Manager associations][1] in the *AWS Systems Manager User Guide*.
|
2634
|
+
#
|
2635
|
+
#
|
2636
|
+
#
|
2637
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-state-manager-targets-and-rate-controls.html
|
2581
2638
|
# @return [Array<Types::Target>]
|
2582
2639
|
#
|
2583
2640
|
# @!attribute [rw] schedule_expression
|
@@ -2586,8 +2643,8 @@ module Aws::SSM
|
|
2586
2643
|
# @return [String]
|
2587
2644
|
#
|
2588
2645
|
# @!attribute [rw] output_location
|
2589
|
-
# An
|
2590
|
-
#
|
2646
|
+
# An S3 bucket where you want to store the output details of the
|
2647
|
+
# request.
|
2591
2648
|
# @return [Types::InstanceAssociationOutputLocation]
|
2592
2649
|
#
|
2593
2650
|
# @!attribute [rw] association_name
|
@@ -2635,6 +2692,22 @@ module Aws::SSM
|
|
2635
2692
|
# The severity level to assign to the association.
|
2636
2693
|
# @return [String]
|
2637
2694
|
#
|
2695
|
+
# @!attribute [rw] sync_compliance
|
2696
|
+
# The mode for generating association compliance. You can specify
|
2697
|
+
# `AUTO` or `MANUAL`. In `AUTO` mode, the system uses the status of
|
2698
|
+
# the association execution to determine the compliance status. If the
|
2699
|
+
# association execution runs successfully, then the association is
|
2700
|
+
# `COMPLIANT`. If the association execution doesn't run successfully,
|
2701
|
+
# the association is `NON-COMPLIANT`.
|
2702
|
+
#
|
2703
|
+
# In `MANUAL` mode, you must specify the `AssociationId` as a
|
2704
|
+
# parameter for the PutComplianceItems API action. In this case,
|
2705
|
+
# compliance data is not managed by State Manager. It is managed by
|
2706
|
+
# your direct call to the PutComplianceItems API action.
|
2707
|
+
#
|
2708
|
+
# By default, all associations use `AUTO` mode.
|
2709
|
+
# @return [String]
|
2710
|
+
#
|
2638
2711
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateAssociationRequest AWS API Documentation
|
2639
2712
|
#
|
2640
2713
|
class CreateAssociationRequest < Struct.new(
|
@@ -2649,7 +2722,8 @@ module Aws::SSM
|
|
2649
2722
|
:automation_target_parameter_name,
|
2650
2723
|
:max_errors,
|
2651
2724
|
:max_concurrency,
|
2652
|
-
:compliance_severity
|
2725
|
+
:compliance_severity,
|
2726
|
+
:sync_compliance)
|
2653
2727
|
include Aws::Structure
|
2654
2728
|
end
|
2655
2729
|
|
@@ -2696,13 +2770,39 @@ module Aws::SSM
|
|
2696
2770
|
# }
|
2697
2771
|
#
|
2698
2772
|
# @!attribute [rw] content
|
2699
|
-
#
|
2773
|
+
# The content for the new SSM document in JSON or YAML format. We
|
2774
|
+
# recommend storing the contents for your new document in an external
|
2775
|
+
# JSON or YAML file and referencing the file in a command.
|
2776
|
+
#
|
2777
|
+
# For examples, see the following topics in the *AWS Systems Manager
|
2778
|
+
# User Guide*.
|
2779
|
+
#
|
2780
|
+
# * [Create an SSM document (console)][1]
|
2781
|
+
#
|
2782
|
+
# * [Create an SSM document (AWS CLI)][2]
|
2783
|
+
#
|
2784
|
+
# * [Create an SSM document (API)][3]
|
2785
|
+
#
|
2786
|
+
#
|
2787
|
+
#
|
2788
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/create-ssm-console.html
|
2789
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/create-ssm-document-cli.html
|
2790
|
+
# [3]: https://docs.aws.amazon.com/systems-manager/latest/userguide/create-ssm-document-api.html
|
2700
2791
|
# @return [String]
|
2701
2792
|
#
|
2702
2793
|
# @!attribute [rw] requires
|
2703
|
-
# A list of SSM documents required by a document.
|
2794
|
+
# A list of SSM documents required by a document. This parameter is
|
2795
|
+
# used exclusively by AWS AppConfig. When a user creates an AppConfig
|
2796
|
+
# configuration in an SSM document, the user must also specify a
|
2797
|
+
# required document for validation purposes. In this case, an
|
2704
2798
|
# `ApplicationConfiguration` document requires an
|
2705
|
-
# `ApplicationConfigurationSchema` document.
|
2799
|
+
# `ApplicationConfigurationSchema` document for validation purposes.
|
2800
|
+
# For more information, see [AWS AppConfig][1] in the *AWS Systems
|
2801
|
+
# Manager User Guide*.
|
2802
|
+
#
|
2803
|
+
#
|
2804
|
+
#
|
2805
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/appconfig.html
|
2706
2806
|
# @return [Array<Types::DocumentRequires>]
|
2707
2807
|
#
|
2708
2808
|
# @!attribute [rw] attachments
|
@@ -2713,8 +2813,8 @@ module Aws::SSM
|
|
2713
2813
|
# @!attribute [rw] name
|
2714
2814
|
# A name for the Systems Manager document.
|
2715
2815
|
#
|
2716
|
-
#
|
2717
|
-
#
|
2816
|
+
# You can't use the following strings as document name prefixes.
|
2817
|
+
# These are reserved by AWS for use as document name prefixes:
|
2718
2818
|
#
|
2719
2819
|
# * `aws`
|
2720
2820
|
#
|
@@ -2745,8 +2845,8 @@ module Aws::SSM
|
|
2745
2845
|
# the following value: /AWS::EC2::Instance. If you specify a value of
|
2746
2846
|
# '/' the document can run on all types of resources. If you don't
|
2747
2847
|
# specify a value, the document can't run on any resources. For a
|
2748
|
-
# list of valid resource types, see [AWS
|
2749
|
-
# in the *AWS CloudFormation User Guide*.
|
2848
|
+
# list of valid resource types, see [AWS resource and property types
|
2849
|
+
# reference][1] in the *AWS CloudFormation User Guide*.
|
2750
2850
|
#
|
2751
2851
|
#
|
2752
2852
|
#
|
@@ -2996,11 +3096,11 @@ module Aws::SSM
|
|
2996
3096
|
# resource in the request. Use the `/aws/automations` key in
|
2997
3097
|
# OperationalData to associate an Automation runbook with the OpsItem.
|
2998
3098
|
# To view AWS CLI example commands that use these keys, see [Creating
|
2999
|
-
# OpsItems
|
3099
|
+
# OpsItems manually][1] in the *AWS Systems Manager User Guide*.
|
3000
3100
|
#
|
3001
3101
|
#
|
3002
3102
|
#
|
3003
|
-
# [1]:
|
3103
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-creating-OpsItems.html#OpsCenter-manually-create-OpsItems
|
3004
3104
|
# @return [Hash<String,Types::OpsItemDataValue>]
|
3005
3105
|
#
|
3006
3106
|
# @!attribute [rw] notifications
|
@@ -3021,8 +3121,12 @@ module Aws::SSM
|
|
3021
3121
|
# @return [Array<Types::RelatedOpsItem>]
|
3022
3122
|
#
|
3023
3123
|
# @!attribute [rw] source
|
3024
|
-
# The origin of the OpsItem, such as Amazon EC2 or
|
3025
|
-
#
|
3124
|
+
# The origin of the OpsItem, such as Amazon EC2 or Systems Manager.
|
3125
|
+
#
|
3126
|
+
# <note markdown="1"> The source name can't contain the following strings: aws, amazon,
|
3127
|
+
# and amzn.
|
3128
|
+
#
|
3129
|
+
# </note>
|
3026
3130
|
# @return [String]
|
3027
3131
|
#
|
3028
3132
|
# @!attribute [rw] title
|
@@ -3033,7 +3137,7 @@ module Aws::SSM
|
|
3033
3137
|
# @!attribute [rw] tags
|
3034
3138
|
# Optional metadata that you assign to a resource. You can restrict
|
3035
3139
|
# access to OpsItems by using an inline IAM policy that specifies
|
3036
|
-
# tags. For more information, see [Getting
|
3140
|
+
# tags. For more information, see [Getting started with OpsCenter][1]
|
3037
3141
|
# in the *AWS Systems Manager User Guide*.
|
3038
3142
|
#
|
3039
3143
|
# Tags use a key-value pair. For example:
|
@@ -3047,7 +3151,7 @@ module Aws::SSM
|
|
3047
3151
|
#
|
3048
3152
|
#
|
3049
3153
|
#
|
3050
|
-
# [1]:
|
3154
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-getting-started.html#OpsCenter-getting-started-user-permissions
|
3051
3155
|
# @return [Array<Types::Tag>]
|
3052
3156
|
#
|
3053
3157
|
# @!attribute [rw] category
|
@@ -3160,8 +3264,9 @@ module Aws::SSM
|
|
3160
3264
|
# A list of explicitly approved patches for the baseline.
|
3161
3265
|
#
|
3162
3266
|
# For information about accepted formats for lists of approved patches
|
3163
|
-
# and rejected patches, see [
|
3164
|
-
#
|
3267
|
+
# and rejected patches, see [About package name formats for approved
|
3268
|
+
# and rejected patch lists][1] in the *AWS Systems Manager User
|
3269
|
+
# Guide*.
|
3165
3270
|
#
|
3166
3271
|
#
|
3167
3272
|
#
|
@@ -3184,8 +3289,9 @@ module Aws::SSM
|
|
3184
3289
|
# A list of explicitly rejected patches for the baseline.
|
3185
3290
|
#
|
3186
3291
|
# For information about accepted formats for lists of approved patches
|
3187
|
-
# and rejected patches, see [
|
3188
|
-
#
|
3292
|
+
# and rejected patches, see [About package name formats for approved
|
3293
|
+
# and rejected patch lists][1] in the *AWS Systems Manager User
|
3294
|
+
# Guide*.
|
3189
3295
|
#
|
3190
3296
|
#
|
3191
3297
|
#
|
@@ -3310,18 +3416,24 @@ module Aws::SSM
|
|
3310
3416
|
# @return [String]
|
3311
3417
|
#
|
3312
3418
|
# @!attribute [rw] s3_destination
|
3313
|
-
# Amazon S3 configuration details for the sync.
|
3419
|
+
# Amazon S3 configuration details for the sync. This parameter is
|
3420
|
+
# required if the `SyncType` value is SyncToDestination.
|
3314
3421
|
# @return [Types::ResourceDataSyncS3Destination]
|
3315
3422
|
#
|
3316
3423
|
# @!attribute [rw] sync_type
|
3317
3424
|
# Specify `SyncToDestination` to create a resource data sync that
|
3318
|
-
# synchronizes data
|
3319
|
-
#
|
3320
|
-
#
|
3425
|
+
# synchronizes data to an S3 bucket for Inventory. If you specify
|
3426
|
+
# `SyncToDestination`, you must provide a value for `S3Destination`.
|
3427
|
+
# Specify `SyncFromSource` to synchronize data from a single account
|
3428
|
+
# and multiple Regions, or multiple AWS accounts and Regions, as
|
3429
|
+
# listed in AWS Organizations for Explorer. If you specify
|
3430
|
+
# `SyncFromSource`, you must provide a value for `SyncSource`. The
|
3431
|
+
# default value is `SyncToDestination`.
|
3321
3432
|
# @return [String]
|
3322
3433
|
#
|
3323
3434
|
# @!attribute [rw] sync_source
|
3324
|
-
# Specify information about the data sources to synchronize.
|
3435
|
+
# Specify information about the data sources to synchronize. This
|
3436
|
+
# parameter is required if the `SyncType` value is SyncFromSource.
|
3325
3437
|
# @return [Types::ResourceDataSyncSource]
|
3326
3438
|
#
|
3327
3439
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/CreateResourceDataSyncRequest AWS API Documentation
|
@@ -3521,12 +3633,12 @@ module Aws::SSM
|
|
3521
3633
|
#
|
3522
3634
|
# @!attribute [rw] deletion_summary
|
3523
3635
|
# A summary of the delete operation. For more information about this
|
3524
|
-
# summary, see [
|
3525
|
-
#
|
3636
|
+
# summary, see [Deleting custom inventory][1] in the *AWS Systems
|
3637
|
+
# Manager User Guide*.
|
3526
3638
|
#
|
3527
3639
|
#
|
3528
3640
|
#
|
3529
|
-
# [1]:
|
3641
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-inventory-custom.html#sysman-inventory-delete-summary
|
3530
3642
|
# @return [Types::InventoryDeletionSummary]
|
3531
3643
|
#
|
3532
3644
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DeleteInventoryResult AWS API Documentation
|
@@ -4321,8 +4433,8 @@ module Aws::SSM
|
|
4321
4433
|
# @return [Array<String>]
|
4322
4434
|
#
|
4323
4435
|
# @!attribute [rw] account_sharing_info_list
|
4324
|
-
# A list of
|
4325
|
-
#
|
4436
|
+
# A list of AWS accounts where the current document is shared and the
|
4437
|
+
# version shared with each account.
|
4326
4438
|
# @return [Array<Types::AccountSharingInfo>]
|
4327
4439
|
#
|
4328
4440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/DescribeDocumentPermissionResponse AWS API Documentation
|
@@ -4547,19 +4659,21 @@ module Aws::SSM
|
|
4547
4659
|
#
|
4548
4660
|
# @!attribute [rw] instance_information_filter_list
|
4549
4661
|
# This is a legacy method. We recommend that you don't use this
|
4550
|
-
# method. Instead, use the
|
4551
|
-
#
|
4552
|
-
#
|
4662
|
+
# method. Instead, use the `Filters` data type. `Filters` enables you
|
4663
|
+
# to return instance information by filtering based on tags applied to
|
4664
|
+
# managed instances.
|
4665
|
+
#
|
4666
|
+
# <note markdown="1"> Attempting to use `InstanceInformationFilterList` and `Filters`
|
4667
|
+
# leads to an exception error.
|
4553
4668
|
#
|
4554
|
-
#
|
4555
|
-
# `InstanceInformationFilter` action. Using this method and the
|
4556
|
-
# `InstanceInformationFilter` action causes an exception error.
|
4669
|
+
# </note>
|
4557
4670
|
# @return [Array<Types::InstanceInformationFilter>]
|
4558
4671
|
#
|
4559
4672
|
# @!attribute [rw] filters
|
4560
4673
|
# One or more filters. Use a filter to return a more specific list of
|
4561
|
-
# instances. You can filter on
|
4562
|
-
#
|
4674
|
+
# instances. You can filter based on tags applied to EC2 instances.
|
4675
|
+
# Use this `Filters` data type instead of
|
4676
|
+
# `InstanceInformationFilterList`, which is deprecated.
|
4563
4677
|
# @return [Array<Types::InstanceInformationStringFilter>]
|
4564
4678
|
#
|
4565
4679
|
# @!attribute [rw] max_results
|
@@ -5393,7 +5507,7 @@ module Aws::SSM
|
|
5393
5507
|
# }
|
5394
5508
|
#
|
5395
5509
|
# @!attribute [rw] ops_item_filters
|
5396
|
-
# One or more filters to limit the
|
5510
|
+
# One or more filters to limit the response.
|
5397
5511
|
#
|
5398
5512
|
# * Key: CreatedTime
|
5399
5513
|
#
|
@@ -6012,8 +6126,8 @@ module Aws::SSM
|
|
6012
6126
|
# @!attribute [rw] target_type
|
6013
6127
|
# The target type which defines the kinds of resources the document
|
6014
6128
|
# can run on. For example, /AWS::EC2::Instance. For a list of valid
|
6015
|
-
# resource types, see [AWS
|
6016
|
-
# CloudFormation User Guide*.
|
6129
|
+
# resource types, see [AWS resource and property types reference][1]
|
6130
|
+
# in the *AWS CloudFormation User Guide*.
|
6017
6131
|
#
|
6018
6132
|
#
|
6019
6133
|
#
|
@@ -6026,7 +6140,7 @@ module Aws::SSM
|
|
6026
6140
|
#
|
6027
6141
|
# @!attribute [rw] attachments_information
|
6028
6142
|
# Details about the document attachments, including names, locations,
|
6029
|
-
# sizes,
|
6143
|
+
# sizes, and so on.
|
6030
6144
|
# @return [Array<Types::AttachmentInformation>]
|
6031
6145
|
#
|
6032
6146
|
# @!attribute [rw] requires
|
@@ -6063,7 +6177,7 @@ module Aws::SSM
|
|
6063
6177
|
include Aws::Structure
|
6064
6178
|
end
|
6065
6179
|
|
6066
|
-
#
|
6180
|
+
# This data type is deprecated. Instead, use DocumentKeyValuesFilter.
|
6067
6181
|
#
|
6068
6182
|
# @note When making an API call, you may pass DocumentFilter
|
6069
6183
|
# data as a hash:
|
@@ -6128,8 +6242,8 @@ module Aws::SSM
|
|
6128
6242
|
# @!attribute [rw] target_type
|
6129
6243
|
# The target type which defines the kinds of resources the document
|
6130
6244
|
# can run on. For example, /AWS::EC2::Instance. For a list of valid
|
6131
|
-
# resource types, see [AWS
|
6132
|
-
# CloudFormation User Guide*.
|
6245
|
+
# resource types, see [AWS resource and property types reference][1]
|
6246
|
+
# in the *AWS CloudFormation User Guide*.
|
6133
6247
|
#
|
6134
6248
|
#
|
6135
6249
|
#
|
@@ -6187,7 +6301,7 @@ module Aws::SSM
|
|
6187
6301
|
# values are returned in the results.
|
6188
6302
|
#
|
6189
6303
|
# To specify a custom key and value pair, use the format
|
6190
|
-
# `Key=tag:
|
6304
|
+
# `Key=tag:tagName,Values=valueName`.
|
6191
6305
|
#
|
6192
6306
|
# For example, if you created a Key called region and are using the AWS
|
6193
6307
|
# CLI to call the `list-documents` command:
|
@@ -6376,7 +6490,7 @@ module Aws::SSM
|
|
6376
6490
|
# maintenance window or Patch baseline, doesn't exist.
|
6377
6491
|
#
|
6378
6492
|
# For information about resource quotas in Systems Manager, see [Systems
|
6379
|
-
# Manager
|
6493
|
+
# Manager service quotas][1] in the *AWS General Reference*.
|
6380
6494
|
#
|
6381
6495
|
#
|
6382
6496
|
#
|
@@ -6628,8 +6742,8 @@ module Aws::SSM
|
|
6628
6742
|
#
|
6629
6743
|
# @!attribute [rw] instance_id
|
6630
6744
|
# (Required) The ID of the managed instance targeted by the command. A
|
6631
|
-
# managed instance can be an
|
6632
|
-
#
|
6745
|
+
# managed instance can be an EC2 instance or an instance in your
|
6746
|
+
# hybrid environment that is configured for Systems Manager.
|
6633
6747
|
# @return [String]
|
6634
6748
|
#
|
6635
6749
|
# @!attribute [rw] plugin_name
|
@@ -6653,7 +6767,7 @@ module Aws::SSM
|
|
6653
6767
|
#
|
6654
6768
|
# @!attribute [rw] instance_id
|
6655
6769
|
# The ID of the managed instance targeted by the command. A managed
|
6656
|
-
# instance can be an
|
6770
|
+
# instance can be an EC2 instance or an instance in your hybrid
|
6657
6771
|
# environment that is configured for Systems Manager.
|
6658
6772
|
# @return [String]
|
6659
6773
|
#
|
@@ -6720,7 +6834,7 @@ module Aws::SSM
|
|
6720
6834
|
# includes states resulting from error and concurrency control
|
6721
6835
|
# parameters. StatusDetails can show different results than Status.
|
6722
6836
|
# For more information about these statuses, see [Understanding
|
6723
|
-
#
|
6837
|
+
# command statuses][1] in the *AWS Systems Manager User Guide*.
|
6724
6838
|
# StatusDetails can be one of the following values:
|
6725
6839
|
#
|
6726
6840
|
# * Pending: The command has not been sent to the instance.
|
@@ -6730,10 +6844,11 @@ module Aws::SSM
|
|
6730
6844
|
#
|
6731
6845
|
# * Delayed: The system attempted to send the command to the target,
|
6732
6846
|
# but the target was not available. The instance might not be
|
6733
|
-
# available because of network issues, the instance was
|
6734
|
-
#
|
6847
|
+
# available because of network issues, because the instance was
|
6848
|
+
# stopped, or for similar reasons. The system will try to send the
|
6849
|
+
# command again.
|
6735
6850
|
#
|
6736
|
-
# * Success: The command or plugin
|
6851
|
+
# * Success: The command or plugin ran successfully. This is a
|
6737
6852
|
# terminal state.
|
6738
6853
|
#
|
6739
6854
|
# * Delivery Timed Out: The command was not delivered to the instance
|
@@ -6769,7 +6884,7 @@ module Aws::SSM
|
|
6769
6884
|
#
|
6770
6885
|
#
|
6771
6886
|
#
|
6772
|
-
# [1]:
|
6887
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/monitor-commands.html
|
6773
6888
|
# @return [String]
|
6774
6889
|
#
|
6775
6890
|
# @!attribute [rw] standard_output_content
|
@@ -6780,8 +6895,8 @@ module Aws::SSM
|
|
6780
6895
|
#
|
6781
6896
|
# @!attribute [rw] standard_output_url
|
6782
6897
|
# The URL for the complete text written by the plugin to stdout in
|
6783
|
-
# Amazon S3. If an
|
6784
|
-
#
|
6898
|
+
# Amazon S3. If an S3 bucket was not specified, then this string is
|
6899
|
+
# empty.
|
6785
6900
|
# @return [String]
|
6786
6901
|
#
|
6787
6902
|
# @!attribute [rw] standard_error_content
|
@@ -6963,7 +7078,7 @@ module Aws::SSM
|
|
6963
7078
|
# @!attribute [rw] version_name
|
6964
7079
|
# An optional field specifying the version of the artifact associated
|
6965
7080
|
# with the document. For example, "Release 12, Update 6". This value
|
6966
|
-
# is unique across all versions of a document
|
7081
|
+
# is unique across all versions of a document and can't be changed.
|
6967
7082
|
# @return [String]
|
6968
7083
|
#
|
6969
7084
|
# @!attribute [rw] document_version
|
@@ -7031,7 +7146,7 @@ module Aws::SSM
|
|
7031
7146
|
#
|
7032
7147
|
# @!attribute [rw] attachments_content
|
7033
7148
|
# A description of the document attachments, including names,
|
7034
|
-
# locations, sizes,
|
7149
|
+
# locations, sizes, and so on.
|
7035
7150
|
# @return [Array<Types::AttachmentContent>]
|
7036
7151
|
#
|
7037
7152
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDocumentResult AWS API Documentation
|
@@ -8234,7 +8349,10 @@ module Aws::SSM
|
|
8234
8349
|
# }
|
8235
8350
|
#
|
8236
8351
|
# @!attribute [rw] setting_id
|
8237
|
-
# The ID of the service setting to get.
|
8352
|
+
# The ID of the service setting to get. The setting ID can be
|
8353
|
+
# `/ssm/parameter-store/default-parameter-tier`,
|
8354
|
+
# `/ssm/parameter-store/high-throughput-enabled`, or
|
8355
|
+
# `/ssm/managed-instance/activation-tier`.
|
8238
8356
|
# @return [String]
|
8239
8357
|
#
|
8240
8358
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetServiceSettingRequest AWS API Documentation
|
@@ -8258,21 +8376,21 @@ module Aws::SSM
|
|
8258
8376
|
end
|
8259
8377
|
|
8260
8378
|
# A hierarchy can have a maximum of 15 levels. For more information, see
|
8261
|
-
# [Requirements and
|
8379
|
+
# [Requirements and constraints for parameter names][1] in the *AWS
|
8262
8380
|
# Systems Manager User Guide*.
|
8263
8381
|
#
|
8264
8382
|
#
|
8265
8383
|
#
|
8266
|
-
# [1]:
|
8384
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-parameter-name-constraints.html
|
8267
8385
|
#
|
8268
8386
|
# @!attribute [rw] message
|
8269
8387
|
# A hierarchy can have a maximum of 15 levels. For more information,
|
8270
|
-
# see [Requirements and
|
8388
|
+
# see [Requirements and constraints for parameter names][1] in the
|
8271
8389
|
# *AWS Systems Manager User Guide*.
|
8272
8390
|
#
|
8273
8391
|
#
|
8274
8392
|
#
|
8275
|
-
# [1]:
|
8393
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-parameter-name-constraints.html
|
8276
8394
|
# @return [String]
|
8277
8395
|
#
|
8278
8396
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/HierarchyLevelLimitExceededException AWS API Documentation
|
@@ -8283,14 +8401,15 @@ module Aws::SSM
|
|
8283
8401
|
end
|
8284
8402
|
|
8285
8403
|
# Parameter Store does not support changing a parameter type in a
|
8286
|
-
# hierarchy. For example, you can't change a parameter from a String
|
8287
|
-
# type to a SecureString type. You must create a new, unique
|
8404
|
+
# hierarchy. For example, you can't change a parameter from a `String`
|
8405
|
+
# type to a `SecureString` type. You must create a new, unique
|
8406
|
+
# parameter.
|
8288
8407
|
#
|
8289
8408
|
# @!attribute [rw] message
|
8290
8409
|
# Parameter Store does not support changing a parameter type in a
|
8291
|
-
# hierarchy. For example, you can't change a parameter from a
|
8292
|
-
# type to a SecureString type. You must create a new,
|
8293
|
-
# parameter.
|
8410
|
+
# hierarchy. For example, you can't change a parameter from a
|
8411
|
+
# `String` type to a `SecureString` type. You must create a new,
|
8412
|
+
# unique parameter.
|
8294
8413
|
# @return [String]
|
8295
8414
|
#
|
8296
8415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/HierarchyTypeMismatchException AWS API Documentation
|
@@ -8374,8 +8493,7 @@ module Aws::SSM
|
|
8374
8493
|
include Aws::Structure
|
8375
8494
|
end
|
8376
8495
|
|
8377
|
-
# An
|
8378
|
-
# request.
|
8496
|
+
# An S3 bucket where you want to store the results of this request.
|
8379
8497
|
#
|
8380
8498
|
# @note When making an API call, you may pass InstanceAssociationOutputLocation
|
8381
8499
|
# data as a hash:
|
@@ -8389,8 +8507,7 @@ module Aws::SSM
|
|
8389
8507
|
# }
|
8390
8508
|
#
|
8391
8509
|
# @!attribute [rw] s3_location
|
8392
|
-
# An
|
8393
|
-
# request.
|
8510
|
+
# An S3 bucket where you want to store the results of this request.
|
8394
8511
|
# @return [Types::S3OutputLocation]
|
8395
8512
|
#
|
8396
8513
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstanceAssociationOutputLocation AWS API Documentation
|
@@ -8400,12 +8517,12 @@ module Aws::SSM
|
|
8400
8517
|
include Aws::Structure
|
8401
8518
|
end
|
8402
8519
|
|
8403
|
-
# The URL of
|
8404
|
-
#
|
8520
|
+
# The URL of S3 bucket where you want to store the results of this
|
8521
|
+
# request.
|
8405
8522
|
#
|
8406
8523
|
# @!attribute [rw] s3_output_url
|
8407
|
-
# The URL of
|
8408
|
-
#
|
8524
|
+
# The URL of S3 bucket where you want to store the results of this
|
8525
|
+
# request.
|
8409
8526
|
# @return [Types::S3OutputUrl]
|
8410
8527
|
#
|
8411
8528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InstanceAssociationOutputUrl AWS API Documentation
|
@@ -8458,8 +8575,8 @@ module Aws::SSM
|
|
8458
8575
|
# @return [String]
|
8459
8576
|
#
|
8460
8577
|
# @!attribute [rw] output_url
|
8461
|
-
# A URL for an
|
8462
|
-
#
|
8578
|
+
# A URL for an S3 bucket where you want to store the results of this
|
8579
|
+
# request.
|
8463
8580
|
# @return [Types::InstanceAssociationOutputUrl]
|
8464
8581
|
#
|
8465
8582
|
# @!attribute [rw] association_name
|
@@ -8530,7 +8647,7 @@ module Aws::SSM
|
|
8530
8647
|
# @!attribute [rw] iam_role
|
8531
8648
|
# The Amazon Identity and Access Management (IAM) role assigned to the
|
8532
8649
|
# on-premises Systems Manager managed instances. This call does not
|
8533
|
-
# return the IAM role for
|
8650
|
+
# return the IAM role for EC2 instances.
|
8534
8651
|
# @return [String]
|
8535
8652
|
#
|
8536
8653
|
# @!attribute [rw] registration_date
|
@@ -8685,17 +8802,17 @@ module Aws::SSM
|
|
8685
8802
|
# @!attribute [rw] install_override_list
|
8686
8803
|
# An https URL or an Amazon S3 path-style URL to a list of patches to
|
8687
8804
|
# be installed. This patch installation list, which you maintain in an
|
8688
|
-
#
|
8805
|
+
# S3 bucket in YAML format and specify in the SSM document
|
8689
8806
|
# `AWS-RunPatchBaseline`, overrides the patches specified by the
|
8690
8807
|
# default patch baseline.
|
8691
8808
|
#
|
8692
8809
|
# For more information about the `InstallOverrideList` parameter, see
|
8693
|
-
# [About the SSM
|
8810
|
+
# [About the SSM document AWS-RunPatchBaseline][1] in the *AWS Systems
|
8694
8811
|
# Manager User Guide*.
|
8695
8812
|
#
|
8696
8813
|
#
|
8697
8814
|
#
|
8698
|
-
# [1]:
|
8815
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-about-aws-runpatchbaseline.html
|
8699
8816
|
# @return [String]
|
8700
8817
|
#
|
8701
8818
|
# @!attribute [rw] owner_information
|
@@ -9386,7 +9503,7 @@ module Aws::SSM
|
|
9386
9503
|
#
|
9387
9504
|
#
|
9388
9505
|
#
|
9389
|
-
# [1]:
|
9506
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/rc-sns-notifications.html
|
9390
9507
|
#
|
9391
9508
|
# @!attribute [rw] message
|
9392
9509
|
# @return [String]
|
@@ -9412,8 +9529,8 @@ module Aws::SSM
|
|
9412
9529
|
end
|
9413
9530
|
|
9414
9531
|
# The target is not valid or does not exist. It might not be configured
|
9415
|
-
# for
|
9416
|
-
#
|
9532
|
+
# for Systems Manager or you might not have permission to perform the
|
9533
|
+
# operation.
|
9417
9534
|
#
|
9418
9535
|
# @!attribute [rw] message
|
9419
9536
|
# @return [String]
|
@@ -9540,12 +9657,12 @@ module Aws::SSM
|
|
9540
9657
|
#
|
9541
9658
|
# @!attribute [rw] deletion_summary
|
9542
9659
|
# Information about the delete operation. For more information about
|
9543
|
-
# this summary, see [Understanding the
|
9660
|
+
# this summary, see [Understanding the delete inventory summary][1] in
|
9544
9661
|
# the *AWS Systems Manager User Guide*.
|
9545
9662
|
#
|
9546
9663
|
#
|
9547
9664
|
#
|
9548
|
-
# [1]:
|
9665
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-inventory-custom.html#sysman-inventory-delete
|
9549
9666
|
# @return [Types::InventoryDeletionSummary]
|
9550
9667
|
#
|
9551
9668
|
# @!attribute [rw] last_status_update_time
|
@@ -9638,6 +9755,16 @@ module Aws::SSM
|
|
9638
9755
|
#
|
9639
9756
|
# @!attribute [rw] type
|
9640
9757
|
# The type of filter.
|
9758
|
+
#
|
9759
|
+
# <note markdown="1"> The `Exists` filter must be used with aggregators. For more
|
9760
|
+
# information, see [Aggregating inventory data][1] in the *AWS Systems
|
9761
|
+
# Manager User Guide*.
|
9762
|
+
#
|
9763
|
+
# </note>
|
9764
|
+
#
|
9765
|
+
#
|
9766
|
+
#
|
9767
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-inventory-aggregate.html
|
9641
9768
|
# @return [String]
|
9642
9769
|
#
|
9643
9770
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/InventoryFilter AWS API Documentation
|
@@ -9937,12 +10064,12 @@ module Aws::SSM
|
|
9937
10064
|
|
9938
10065
|
# @!attribute [rw] invalid_labels
|
9939
10066
|
# The label does not meet the requirements. For information about
|
9940
|
-
# parameter label requirements, see [Labeling
|
10067
|
+
# parameter label requirements, see [Labeling parameters][1] in the
|
9941
10068
|
# *AWS Systems Manager User Guide*.
|
9942
10069
|
#
|
9943
10070
|
#
|
9944
10071
|
#
|
9945
|
-
# [1]:
|
10072
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-labels.html
|
9946
10073
|
# @return [Array<String>]
|
9947
10074
|
#
|
9948
10075
|
# @!attribute [rw] parameter_version
|
@@ -10014,7 +10141,7 @@ module Aws::SSM
|
|
10014
10141
|
# {
|
10015
10142
|
# association_filter_list: [
|
10016
10143
|
# {
|
10017
|
-
# key: "InstanceId", # required, accepts InstanceId, Name, AssociationId, AssociationStatusName, LastExecutedBefore, LastExecutedAfter, AssociationName
|
10144
|
+
# key: "InstanceId", # required, accepts InstanceId, Name, AssociationId, AssociationStatusName, LastExecutedBefore, LastExecutedAfter, AssociationName, ResourceGroupName
|
10018
10145
|
# value: "AssociationFilterValue", # required
|
10019
10146
|
# },
|
10020
10147
|
# ],
|
@@ -10411,13 +10538,17 @@ module Aws::SSM
|
|
10411
10538
|
# }
|
10412
10539
|
#
|
10413
10540
|
# @!attribute [rw] document_filter_list
|
10414
|
-
#
|
10415
|
-
# results.
|
10541
|
+
# This data type is deprecated. Instead, use `Filters`.
|
10416
10542
|
# @return [Array<Types::DocumentFilter>]
|
10417
10543
|
#
|
10418
10544
|
# @!attribute [rw] filters
|
10419
|
-
# One or more
|
10420
|
-
# results.
|
10545
|
+
# One or more DocumentKeyValuesFilter objects. Use a filter to return
|
10546
|
+
# a more specific list of results. For keys, you can specify one or
|
10547
|
+
# more key-value pair tags that have been applied to a document. Other
|
10548
|
+
# valid keys include `Owner`, `Name`, `PlatformTypes`, and
|
10549
|
+
# `DocumentType`. For example, to return documents you own use
|
10550
|
+
# `Key=Owner,Values=Self`. To specify a custom key-value pair, use the
|
10551
|
+
# format `Key=tag:tagName,Values=valueName`.
|
10421
10552
|
# @return [Array<Types::DocumentKeyValuesFilter>]
|
10422
10553
|
#
|
10423
10554
|
# @!attribute [rw] max_results
|
@@ -10699,7 +10830,7 @@ module Aws::SSM
|
|
10699
10830
|
include Aws::Structure
|
10700
10831
|
end
|
10701
10832
|
|
10702
|
-
# Information about an
|
10833
|
+
# Information about an S3 bucket to write instance-level logs to.
|
10703
10834
|
#
|
10704
10835
|
# <note markdown="1"> `LoggingInfo` has been deprecated. To specify an S3 bucket to contain
|
10705
10836
|
# logs, instead use the `OutputS3BucketName` and `OutputS3KeyPrefix`
|
@@ -10720,15 +10851,15 @@ module Aws::SSM
|
|
10720
10851
|
# }
|
10721
10852
|
#
|
10722
10853
|
# @!attribute [rw] s3_bucket_name
|
10723
|
-
# The name of an
|
10854
|
+
# The name of an S3 bucket where execution logs are stored .
|
10724
10855
|
# @return [String]
|
10725
10856
|
#
|
10726
10857
|
# @!attribute [rw] s3_key_prefix
|
10727
|
-
# (Optional) The
|
10858
|
+
# (Optional) The S3 bucket subfolder.
|
10728
10859
|
# @return [String]
|
10729
10860
|
#
|
10730
10861
|
# @!attribute [rw] s3_region
|
10731
|
-
# The
|
10862
|
+
# The Region where the S3 bucket is located.
|
10732
10863
|
# @return [String]
|
10733
10864
|
#
|
10734
10865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/LoggingInfo AWS API Documentation
|
@@ -11218,11 +11349,11 @@ module Aws::SSM
|
|
11218
11349
|
# @return [Types::NotificationConfig]
|
11219
11350
|
#
|
11220
11351
|
# @!attribute [rw] output_s3_bucket_name
|
11221
|
-
# The name of the
|
11352
|
+
# The name of the S3 bucket.
|
11222
11353
|
# @return [String]
|
11223
11354
|
#
|
11224
11355
|
# @!attribute [rw] output_s3_key_prefix
|
11225
|
-
# The
|
11356
|
+
# The S3 bucket subfolder.
|
11226
11357
|
# @return [String]
|
11227
11358
|
#
|
11228
11359
|
# @!attribute [rw] parameters
|
@@ -11406,7 +11537,7 @@ module Aws::SSM
|
|
11406
11537
|
# @return [Integer]
|
11407
11538
|
#
|
11408
11539
|
# @!attribute [rw] logging_info
|
11409
|
-
# Information about an
|
11540
|
+
# Information about an S3 bucket to write task-level logs to.
|
11410
11541
|
#
|
11411
11542
|
# <note markdown="1"> `LoggingInfo` has been deprecated. To specify an S3 bucket to
|
11412
11543
|
# contain logs, instead use the `OutputS3BucketName` and
|
@@ -11657,12 +11788,12 @@ module Aws::SSM
|
|
11657
11788
|
# The different events for which you can receive notifications. These
|
11658
11789
|
# events include the following: All (events), InProgress, Success,
|
11659
11790
|
# TimedOut, Cancelled, Failed. To learn more about these events, see
|
11660
|
-
# [
|
11661
|
-
# the *AWS Systems Manager User Guide*.
|
11791
|
+
# [Monitoring Systems Manager status changes using Amazon SNS
|
11792
|
+
# notifications][1] in the *AWS Systems Manager User Guide*.
|
11662
11793
|
#
|
11663
11794
|
#
|
11664
11795
|
#
|
11665
|
-
# [1]:
|
11796
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/monitoring-sns-notifications.html
|
11666
11797
|
# @return [Array<String>]
|
11667
11798
|
#
|
11668
11799
|
# @!attribute [rw] notification_type
|
@@ -11837,7 +11968,7 @@ module Aws::SSM
|
|
11837
11968
|
#
|
11838
11969
|
#
|
11839
11970
|
#
|
11840
|
-
# [1]:
|
11971
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter.html
|
11841
11972
|
#
|
11842
11973
|
# @!attribute [rw] created_by
|
11843
11974
|
# The ARN of the AWS account that created the OpsItem.
|
@@ -11878,12 +12009,12 @@ module Aws::SSM
|
|
11878
12009
|
#
|
11879
12010
|
# @!attribute [rw] status
|
11880
12011
|
# The OpsItem status. Status can be `Open`, `In Progress`, or
|
11881
|
-
# `Resolved`. For more information, see [Editing OpsItem
|
12012
|
+
# `Resolved`. For more information, see [Editing OpsItem details][1]
|
11882
12013
|
# in the *AWS Systems Manager User Guide*.
|
11883
12014
|
#
|
11884
12015
|
#
|
11885
12016
|
#
|
11886
|
-
# [1]:
|
12017
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-working-with-OpsItems-editing-details.html
|
11887
12018
|
# @return [String]
|
11888
12019
|
#
|
11889
12020
|
# @!attribute [rw] ops_item_id
|
@@ -11901,8 +12032,8 @@ module Aws::SSM
|
|
11901
12032
|
# @return [String]
|
11902
12033
|
#
|
11903
12034
|
# @!attribute [rw] source
|
11904
|
-
# The origin of the OpsItem, such as Amazon EC2 or
|
11905
|
-
#
|
12035
|
+
# The origin of the OpsItem, such as Amazon EC2 or Systems Manager.
|
12036
|
+
# The impacted resource is a subset of source.
|
11906
12037
|
# @return [String]
|
11907
12038
|
#
|
11908
12039
|
# @!attribute [rw] operational_data
|
@@ -11928,11 +12059,11 @@ module Aws::SSM
|
|
11928
12059
|
# resource in the request. Use the `/aws/automations` key in
|
11929
12060
|
# OperationalData to associate an Automation runbook with the OpsItem.
|
11930
12061
|
# To view AWS CLI example commands that use these keys, see [Creating
|
11931
|
-
# OpsItems
|
12062
|
+
# OpsItems manually][1] in the *AWS Systems Manager User Guide*.
|
11932
12063
|
#
|
11933
12064
|
#
|
11934
12065
|
#
|
11935
|
-
# [1]:
|
12066
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-creating-OpsItems.html#OpsCenter-manually-create-OpsItems
|
11936
12067
|
# @return [Hash<String,Types::OpsItemDataValue>]
|
11937
12068
|
#
|
11938
12069
|
# @!attribute [rw] category
|
@@ -12065,7 +12196,7 @@ module Aws::SSM
|
|
12065
12196
|
#
|
12066
12197
|
#
|
12067
12198
|
#
|
12068
|
-
# [1]:
|
12199
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-learn-more.html#OpsCenter-learn-more-limits
|
12069
12200
|
#
|
12070
12201
|
# @!attribute [rw] resource_types
|
12071
12202
|
# @return [Array<String>]
|
@@ -12222,8 +12353,7 @@ module Aws::SSM
|
|
12222
12353
|
# are stored.
|
12223
12354
|
#
|
12224
12355
|
# @!attribute [rw] output_source_id
|
12225
|
-
# The ID of the output source, for example the URL of an
|
12226
|
-
# bucket.
|
12356
|
+
# The ID of the output source, for example the URL of an S3 bucket.
|
12227
12357
|
# @return [String]
|
12228
12358
|
#
|
12229
12359
|
# @!attribute [rw] output_source_type
|
@@ -12239,15 +12369,15 @@ module Aws::SSM
|
|
12239
12369
|
include Aws::Structure
|
12240
12370
|
end
|
12241
12371
|
|
12242
|
-
# An
|
12372
|
+
# An Systems Manager parameter in Parameter Store.
|
12243
12373
|
#
|
12244
12374
|
# @!attribute [rw] name
|
12245
12375
|
# The name of the parameter.
|
12246
12376
|
# @return [String]
|
12247
12377
|
#
|
12248
12378
|
# @!attribute [rw] type
|
12249
|
-
# The type of parameter. Valid values include the following: String
|
12250
|
-
#
|
12379
|
+
# The type of parameter. Valid values include the following: `String`,
|
12380
|
+
# `StringList`, and `SecureString`.
|
12251
12381
|
# @return [String]
|
12252
12382
|
#
|
12253
12383
|
# @!attribute [rw] value
|
@@ -12361,8 +12491,8 @@ module Aws::SSM
|
|
12361
12491
|
# @!attribute [rw] policies
|
12362
12492
|
# Information about the policies assigned to a parameter.
|
12363
12493
|
#
|
12364
|
-
# [
|
12365
|
-
#
|
12494
|
+
# [Assigning parameter policies][1] in the *AWS Systems Manager User
|
12495
|
+
# Guide*.
|
12366
12496
|
#
|
12367
12497
|
#
|
12368
12498
|
#
|
@@ -12448,7 +12578,7 @@ module Aws::SSM
|
|
12448
12578
|
#
|
12449
12579
|
# @!attribute [rw] type
|
12450
12580
|
# The type of parameter. Valid parameter types include the following:
|
12451
|
-
# String
|
12581
|
+
# `String`, `StringList`, and `SecureString`.
|
12452
12582
|
# @return [String]
|
12453
12583
|
#
|
12454
12584
|
# @!attribute [rw] key_id
|
@@ -12542,12 +12672,12 @@ module Aws::SSM
|
|
12542
12672
|
# not valid: `Name`, `Path`, and `Tier`.
|
12543
12673
|
#
|
12544
12674
|
# For examples of CLI commands demonstrating valid parameter filter
|
12545
|
-
# constructions, see [Searching for Systems Manager
|
12675
|
+
# constructions, see [Searching for Systems Manager parameters][1] in
|
12546
12676
|
# the *AWS Systems Manager User Guide*.
|
12547
12677
|
#
|
12548
12678
|
#
|
12549
12679
|
#
|
12550
|
-
# [1]:
|
12680
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-search.html
|
12551
12681
|
#
|
12552
12682
|
# @note When making an API call, you may pass ParameterStringFilter
|
12553
12683
|
# data as a hash:
|
@@ -12775,12 +12905,12 @@ module Aws::SSM
|
|
12775
12905
|
# @!attribute [rw] state
|
12776
12906
|
# The state of the patch on the instance, such as INSTALLED or FAILED.
|
12777
12907
|
#
|
12778
|
-
# For descriptions of each patch state, see [About
|
12779
|
-
#
|
12908
|
+
# For descriptions of each patch state, see [About patch
|
12909
|
+
# compliance][1] in the *AWS Systems Manager User Guide*.
|
12780
12910
|
#
|
12781
12911
|
#
|
12782
12912
|
#
|
12783
|
-
# [1]:
|
12913
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-compliance-about.html#sysman-compliance-monitor-patch
|
12784
12914
|
# @return [String]
|
12785
12915
|
#
|
12786
12916
|
# @!attribute [rw] installed_time
|
@@ -12944,19 +13074,22 @@ module Aws::SSM
|
|
12944
13074
|
#
|
12945
13075
|
# @!attribute [rw] compliance_level
|
12946
13076
|
# A compliance severity level for all approved patches in a patch
|
12947
|
-
# baseline.
|
12948
|
-
# Unspecified, Critical, High, Medium, Low, and Informational.
|
13077
|
+
# baseline.
|
12949
13078
|
# @return [String]
|
12950
13079
|
#
|
12951
13080
|
# @!attribute [rw] approve_after_days
|
12952
13081
|
# The number of days after the release date of each patch matched by
|
12953
13082
|
# the rule that the patch is marked as approved in the patch baseline.
|
12954
13083
|
# For example, a value of `7` means that patches are approved seven
|
12955
|
-
# days after they are released.
|
13084
|
+
# days after they are released. Not supported on Ubuntu Server.
|
12956
13085
|
# @return [Integer]
|
12957
13086
|
#
|
12958
13087
|
# @!attribute [rw] approve_until_date
|
12959
|
-
#
|
13088
|
+
# The cutoff date for auto approval of released patches. Any patches
|
13089
|
+
# released on or before this date are installed automatically. Not
|
13090
|
+
# supported on Ubuntu Server.
|
13091
|
+
#
|
13092
|
+
# Enter dates in the format `YYYY-MM-DD`. For example, `2020-12-31`.
|
12960
13093
|
# @return [String]
|
12961
13094
|
#
|
12962
13095
|
# @!attribute [rw] enable_non_security
|
@@ -13159,6 +13292,7 @@ module Aws::SSM
|
|
13159
13292
|
# },
|
13160
13293
|
# ],
|
13161
13294
|
# item_content_hash: "ComplianceItemContentHash",
|
13295
|
+
# upload_type: "COMPLETE", # accepts COMPLETE, PARTIAL
|
13162
13296
|
# }
|
13163
13297
|
#
|
13164
13298
|
# @!attribute [rw] resource_id
|
@@ -13186,7 +13320,7 @@ module Aws::SSM
|
|
13186
13320
|
# @!attribute [rw] items
|
13187
13321
|
# Information about the compliance as defined by the resource type.
|
13188
13322
|
# For example, for a patch compliance type, `Items` includes
|
13189
|
-
# information about the PatchSeverity, Classification,
|
13323
|
+
# information about the PatchSeverity, Classification, and so on.
|
13190
13324
|
# @return [Array<Types::ComplianceItemEntry>]
|
13191
13325
|
#
|
13192
13326
|
# @!attribute [rw] item_content_hash
|
@@ -13196,6 +13330,22 @@ module Aws::SSM
|
|
13196
13330
|
# ignored.
|
13197
13331
|
# @return [String]
|
13198
13332
|
#
|
13333
|
+
# @!attribute [rw] upload_type
|
13334
|
+
# The mode for uploading compliance items. You can specify `COMPLETE`
|
13335
|
+
# or `PARTIAL`. In `COMPLETE` mode, the system overwrites all existing
|
13336
|
+
# compliance information for the resource. You must provide a full
|
13337
|
+
# list of compliance items each time you send the request.
|
13338
|
+
#
|
13339
|
+
# In `PARTIAL` mode, the system overwrites compliance information for
|
13340
|
+
# a specific association. The association must be configured with
|
13341
|
+
# `SyncCompliance` set to `MANUAL`. By default, all requests use
|
13342
|
+
# `COMPLETE` mode.
|
13343
|
+
#
|
13344
|
+
# <note markdown="1"> This attribute is only valid for association compliance.
|
13345
|
+
#
|
13346
|
+
# </note>
|
13347
|
+
# @return [String]
|
13348
|
+
#
|
13199
13349
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutComplianceItemsRequest AWS API Documentation
|
13200
13350
|
#
|
13201
13351
|
class PutComplianceItemsRequest < Struct.new(
|
@@ -13204,7 +13354,8 @@ module Aws::SSM
|
|
13204
13354
|
:compliance_type,
|
13205
13355
|
:execution_summary,
|
13206
13356
|
:items,
|
13207
|
-
:item_content_hash
|
13357
|
+
:item_content_hash,
|
13358
|
+
:upload_type)
|
13208
13359
|
include Aws::Structure
|
13209
13360
|
end
|
13210
13361
|
|
@@ -13309,8 +13460,8 @@ module Aws::SSM
|
|
13309
13460
|
# levels.
|
13310
13461
|
#
|
13311
13462
|
# For additional information about valid values for parameter names,
|
13312
|
-
# see [
|
13313
|
-
# *AWS Systems Manager User Guide*.
|
13463
|
+
# see [About requirements and constraints for parameter names][1] in
|
13464
|
+
# the *AWS Systems Manager User Guide*.
|
13314
13465
|
#
|
13315
13466
|
# <note markdown="1"> The maximum length constraint listed below includes capacity for
|
13316
13467
|
# additional system attributes that are not part of the name. The
|
@@ -13324,7 +13475,7 @@ module Aws::SSM
|
|
13324
13475
|
#
|
13325
13476
|
#
|
13326
13477
|
#
|
13327
|
-
# [1]:
|
13478
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-parameter-name-constraints.html
|
13328
13479
|
# @return [String]
|
13329
13480
|
#
|
13330
13481
|
# @!attribute [rw] description
|
@@ -13416,8 +13567,9 @@ module Aws::SSM
|
|
13416
13567
|
# Advanced parameters have a content size limit of 8 KB and can be
|
13417
13568
|
# configured to use parameter policies. You can create a maximum of
|
13418
13569
|
# 100,000 advanced parameters for each Region in an AWS account.
|
13419
|
-
# Advanced parameters incur a charge. For more information, see
|
13420
|
-
#
|
13570
|
+
# Advanced parameters incur a charge. For more information, see
|
13571
|
+
# [Standard and advanced parameter tiers][1] in the *AWS Systems
|
13572
|
+
# Manager User Guide*.
|
13421
13573
|
#
|
13422
13574
|
# You can change a standard parameter to an advanced parameter any
|
13423
13575
|
# time. But you can't revert an advanced parameter to a standard
|
@@ -13471,13 +13623,13 @@ module Aws::SSM
|
|
13471
13623
|
# the current Region.
|
13472
13624
|
#
|
13473
13625
|
# For more information about configuring the default tier option, see
|
13474
|
-
# [Specifying a
|
13626
|
+
# [Specifying a default parameter tier][2] in the *AWS Systems Manager
|
13475
13627
|
# User Guide*.
|
13476
13628
|
#
|
13477
13629
|
#
|
13478
13630
|
#
|
13479
|
-
# [1]:
|
13480
|
-
# [2]:
|
13631
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-advanced-parameters.html
|
13632
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/ps-default-tier.html
|
13481
13633
|
# @return [String]
|
13482
13634
|
#
|
13483
13635
|
# @!attribute [rw] policies
|
@@ -13503,11 +13655,11 @@ module Aws::SSM
|
|
13503
13655
|
#
|
13504
13656
|
# All existing policies are preserved until you send new policies or
|
13505
13657
|
# an empty policy. For more information about parameter policies, see
|
13506
|
-
# [
|
13658
|
+
# [Assigning parameter policies][1].
|
13507
13659
|
#
|
13508
13660
|
#
|
13509
13661
|
#
|
13510
|
-
# [1]:
|
13662
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-policies.html
|
13511
13663
|
# @return [String]
|
13512
13664
|
#
|
13513
13665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutParameterRequest AWS API Documentation
|
@@ -13683,8 +13835,8 @@ module Aws::SSM
|
|
13683
13835
|
# </note>
|
13684
13836
|
#
|
13685
13837
|
# For more information about these examples formats, including the
|
13686
|
-
# best use case for each one, see [Examples: Register
|
13687
|
-
#
|
13838
|
+
# best use case for each one, see [Examples: Register targets with a
|
13839
|
+
# maintenance window][1] in the *AWS Systems Manager User Guide*.
|
13688
13840
|
#
|
13689
13841
|
#
|
13690
13842
|
#
|
@@ -13838,15 +13990,15 @@ module Aws::SSM
|
|
13838
13990
|
# For more information, see the following topics in the in the *AWS
|
13839
13991
|
# Systems Manager User Guide*\:
|
13840
13992
|
#
|
13841
|
-
# * [
|
13993
|
+
# * [Using service-linked roles for Systems Manager][1]
|
13842
13994
|
#
|
13843
|
-
# * [Should I
|
13844
|
-
#
|
13995
|
+
# * [Should I use a service-linked role or a custom service role to
|
13996
|
+
# run maintenance window tasks? ][2]
|
13845
13997
|
#
|
13846
13998
|
#
|
13847
13999
|
#
|
13848
|
-
# [1]:
|
13849
|
-
# [2]:
|
14000
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/using-service-linked-roles.html#slr-permissions
|
14001
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-maintenance-permissions.html#maintenance-window-tasks-service-role
|
13850
14002
|
# @return [String]
|
13851
14003
|
#
|
13852
14004
|
# @!attribute [rw] task_type
|
@@ -13888,8 +14040,8 @@ module Aws::SSM
|
|
13888
14040
|
# @return [String]
|
13889
14041
|
#
|
13890
14042
|
# @!attribute [rw] logging_info
|
13891
|
-
# A structure containing information about an
|
13892
|
-
#
|
14043
|
+
# A structure containing information about an S3 bucket to write
|
14044
|
+
# instance-level logs to.
|
13893
14045
|
#
|
13894
14046
|
# <note markdown="1"> `LoggingInfo` has been deprecated. To specify an S3 bucket to
|
13895
14047
|
# contain logs, instead use the `OutputS3BucketName` and
|
@@ -14034,7 +14186,11 @@ module Aws::SSM
|
|
14034
14186
|
# }
|
14035
14187
|
#
|
14036
14188
|
# @!attribute [rw] setting_id
|
14037
|
-
# The
|
14189
|
+
# The Amazon Resource Name (ARN) of the service setting to reset. The
|
14190
|
+
# setting ID can be `/ssm/parameter-store/default-parameter-tier`,
|
14191
|
+
# `/ssm/parameter-store/high-throughput-enabled`, or
|
14192
|
+
# `/ssm/managed-instance/activation-tier`. For example,
|
14193
|
+
# `arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled`.
|
14038
14194
|
# @return [String]
|
14039
14195
|
#
|
14040
14196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/ResetServiceSettingRequest AWS API Documentation
|
@@ -14203,8 +14359,8 @@ module Aws::SSM
|
|
14203
14359
|
end
|
14204
14360
|
|
14205
14361
|
# Synchronize Systems Manager Inventory data from multiple AWS accounts
|
14206
|
-
# defined in AWS Organizations to a centralized
|
14207
|
-
#
|
14362
|
+
# defined in AWS Organizations to a centralized S3 bucket. Data is
|
14363
|
+
# synchronized to individual key prefixes in the central bucket. Each
|
14208
14364
|
# key prefix represents a different AWS account ID.
|
14209
14365
|
#
|
14210
14366
|
# @note When making an API call, you may pass ResourceDataSyncDestinationDataSharing
|
@@ -14247,9 +14403,9 @@ module Aws::SSM
|
|
14247
14403
|
# @!attribute [rw] sync_type
|
14248
14404
|
# The type of resource data sync. If `SyncType` is
|
14249
14405
|
# `SyncToDestination`, then the resource data sync synchronizes data
|
14250
|
-
# to an
|
14251
|
-
#
|
14252
|
-
#
|
14406
|
+
# to an S3 bucket. If the `SyncType` is `SyncFromSource` then the
|
14407
|
+
# resource data sync synchronizes data from AWS Organizations or from
|
14408
|
+
# multiple AWS Regions.
|
14253
14409
|
# @return [String]
|
14254
14410
|
#
|
14255
14411
|
# @!attribute [rw] sync_source
|
@@ -14257,7 +14413,7 @@ module Aws::SSM
|
|
14257
14413
|
# @return [Types::ResourceDataSyncSourceWithState]
|
14258
14414
|
#
|
14259
14415
|
# @!attribute [rw] s3_destination
|
14260
|
-
# Configuration information for the target
|
14416
|
+
# Configuration information for the target S3 bucket.
|
14261
14417
|
# @return [Types::ResourceDataSyncS3Destination]
|
14262
14418
|
#
|
14263
14419
|
# @!attribute [rw] last_sync_time
|
@@ -14341,8 +14497,7 @@ module Aws::SSM
|
|
14341
14497
|
include Aws::Structure
|
14342
14498
|
end
|
14343
14499
|
|
14344
|
-
# Information about the target
|
14345
|
-
# Sync.
|
14500
|
+
# Information about the target S3 bucket for the Resource Data Sync.
|
14346
14501
|
#
|
14347
14502
|
# @note When making an API call, you may pass ResourceDataSyncS3Destination
|
14348
14503
|
# data as a hash:
|
@@ -14359,8 +14514,7 @@ module Aws::SSM
|
|
14359
14514
|
# }
|
14360
14515
|
#
|
14361
14516
|
# @!attribute [rw] bucket_name
|
14362
|
-
# The name of the
|
14363
|
-
# stored.
|
14517
|
+
# The name of the S3 bucket where the aggregated data is stored.
|
14364
14518
|
# @return [String]
|
14365
14519
|
#
|
14366
14520
|
# @!attribute [rw] prefix
|
@@ -14373,13 +14527,13 @@ module Aws::SSM
|
|
14373
14527
|
# @return [String]
|
14374
14528
|
#
|
14375
14529
|
# @!attribute [rw] region
|
14376
|
-
# The AWS Region with the
|
14377
|
-
#
|
14530
|
+
# The AWS Region with the S3 bucket targeted by the Resource Data
|
14531
|
+
# Sync.
|
14378
14532
|
# @return [String]
|
14379
14533
|
#
|
14380
14534
|
# @!attribute [rw] awskms_key_arn
|
14381
14535
|
# The ARN of an encryption key for a destination in Amazon S3. Must
|
14382
|
-
# belong to the same Region as the destination
|
14536
|
+
# belong to the same Region as the destination S3 bucket.
|
14383
14537
|
# @return [String]
|
14384
14538
|
#
|
14385
14539
|
# @!attribute [rw] destination_data_sharing
|
@@ -14530,7 +14684,7 @@ module Aws::SSM
|
|
14530
14684
|
# have been created.
|
14531
14685
|
#
|
14532
14686
|
# For information about resource quotas in Systems Manager, see [Systems
|
14533
|
-
# Manager
|
14687
|
+
# Manager service quotas][1] in the *AWS General Reference*.
|
14534
14688
|
#
|
14535
14689
|
#
|
14536
14690
|
#
|
@@ -14603,7 +14757,7 @@ module Aws::SSM
|
|
14603
14757
|
# **region** represents the Region identifier for an AWS Region
|
14604
14758
|
# supported by AWS Systems Manager, such as `us-east-2` for the US
|
14605
14759
|
# East (Ohio) Region. For a list of supported **region** values, see
|
14606
|
-
# the **Region** column in [Systems Manager
|
14760
|
+
# the **Region** column in [Systems Manager service endpoints][1] in
|
14607
14761
|
# the *AWS General Reference*.
|
14608
14762
|
#
|
14609
14763
|
# **session-id** represents the ID of a Session Manager session, such
|
@@ -14623,8 +14777,7 @@ module Aws::SSM
|
|
14623
14777
|
include Aws::Structure
|
14624
14778
|
end
|
14625
14779
|
|
14626
|
-
# An
|
14627
|
-
# request.
|
14780
|
+
# An S3 bucket where you want to store the results of this request.
|
14628
14781
|
#
|
14629
14782
|
# @note When making an API call, you may pass S3OutputLocation
|
14630
14783
|
# data as a hash:
|
@@ -14638,15 +14791,15 @@ module Aws::SSM
|
|
14638
14791
|
# @!attribute [rw] output_s3_region
|
14639
14792
|
# (Deprecated) You can no longer specify this parameter. The system
|
14640
14793
|
# ignores it. Instead, Systems Manager automatically determines the
|
14641
|
-
#
|
14794
|
+
# Region of the S3 bucket.
|
14642
14795
|
# @return [String]
|
14643
14796
|
#
|
14644
14797
|
# @!attribute [rw] output_s3_bucket_name
|
14645
|
-
# The name of the
|
14798
|
+
# The name of the S3 bucket.
|
14646
14799
|
# @return [String]
|
14647
14800
|
#
|
14648
14801
|
# @!attribute [rw] output_s3_key_prefix
|
14649
|
-
# The
|
14802
|
+
# The S3 bucket subfolder.
|
14650
14803
|
# @return [String]
|
14651
14804
|
#
|
14652
14805
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/S3OutputLocation AWS API Documentation
|
@@ -14658,12 +14811,12 @@ module Aws::SSM
|
|
14658
14811
|
include Aws::Structure
|
14659
14812
|
end
|
14660
14813
|
|
14661
|
-
# A URL for the
|
14662
|
-
#
|
14814
|
+
# A URL for the S3 bucket where you want to store the results of this
|
14815
|
+
# request.
|
14663
14816
|
#
|
14664
14817
|
# @!attribute [rw] output_url
|
14665
|
-
# A URL for an
|
14666
|
-
#
|
14818
|
+
# A URL for an S3 bucket where you want to store the results of this
|
14819
|
+
# request.
|
14667
14820
|
# @return [String]
|
14668
14821
|
#
|
14669
14822
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/S3OutputUrl AWS API Documentation
|
@@ -14792,24 +14945,25 @@ module Aws::SSM
|
|
14792
14945
|
# maximum of 50 IDs. If you prefer not to list individual instance
|
14793
14946
|
# IDs, you can instead send commands to a fleet of instances using the
|
14794
14947
|
# Targets parameter, which accepts EC2 tags. For more information
|
14795
|
-
# about how to use targets, see [
|
14796
|
-
# the *AWS Systems Manager User
|
14948
|
+
# about how to use targets, see [Using targets and rate controls to
|
14949
|
+
# send commands to a fleet][1] in the *AWS Systems Manager User
|
14950
|
+
# Guide*.
|
14797
14951
|
#
|
14798
14952
|
#
|
14799
14953
|
#
|
14800
|
-
# [1]:
|
14954
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html
|
14801
14955
|
# @return [Array<String>]
|
14802
14956
|
#
|
14803
14957
|
# @!attribute [rw] targets
|
14804
14958
|
# (Optional) An array of search criteria that targets instances using
|
14805
14959
|
# a Key,Value combination that you specify. Targets is required if you
|
14806
14960
|
# don't provide one or more instance IDs in the call. For more
|
14807
|
-
# information about how to use targets, see [Sending
|
14808
|
-
#
|
14961
|
+
# information about how to use targets, see [Sending commands to a
|
14962
|
+
# fleet][1] in the *AWS Systems Manager User Guide*.
|
14809
14963
|
#
|
14810
14964
|
#
|
14811
14965
|
#
|
14812
|
-
# [1]:
|
14966
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html
|
14813
14967
|
# @return [Array<Types::Target>]
|
14814
14968
|
#
|
14815
14969
|
# @!attribute [rw] document_name
|
@@ -14866,7 +15020,7 @@ module Aws::SSM
|
|
14866
15020
|
# @!attribute [rw] output_s3_region
|
14867
15021
|
# (Deprecated) You can no longer specify this parameter. The system
|
14868
15022
|
# ignores it. Instead, Systems Manager automatically determines the
|
14869
|
-
#
|
15023
|
+
# Region of the S3 bucket.
|
14870
15024
|
# @return [String]
|
14871
15025
|
#
|
14872
15026
|
# @!attribute [rw] output_s3_bucket_name
|
@@ -14883,12 +15037,12 @@ module Aws::SSM
|
|
14883
15037
|
# (Optional) The maximum number of instances that are allowed to run
|
14884
15038
|
# the command at the same time. You can specify a number such as 10 or
|
14885
15039
|
# a percentage such as 10%. The default value is 50. For more
|
14886
|
-
# information about how to use MaxConcurrency, see [Using
|
14887
|
-
#
|
15040
|
+
# information about how to use MaxConcurrency, see [Using concurrency
|
15041
|
+
# controls][1] in the *AWS Systems Manager User Guide*.
|
14888
15042
|
#
|
14889
15043
|
#
|
14890
15044
|
#
|
14891
|
-
# [1]:
|
15045
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html#send-commands-velocity
|
14892
15046
|
# @return [String]
|
14893
15047
|
#
|
14894
15048
|
# @!attribute [rw] max_errors
|
@@ -14897,11 +15051,11 @@ module Aws::SSM
|
|
14897
15051
|
# the systems stops sending the command to additional targets. You can
|
14898
15052
|
# specify a number like 10 or a percentage like 10%. The default value
|
14899
15053
|
# is 0. For more information about how to use MaxErrors, see [Using
|
14900
|
-
#
|
15054
|
+
# error controls][1] in the *AWS Systems Manager User Guide*.
|
14901
15055
|
#
|
14902
15056
|
#
|
14903
15057
|
#
|
14904
|
-
# [1]:
|
15058
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/send-commands-multiple.html#send-commands-maxerrors
|
14905
15059
|
# @return [String]
|
14906
15060
|
#
|
14907
15061
|
# @!attribute [rw] service_role_arn
|
@@ -15346,12 +15500,12 @@ module Aws::SSM
|
|
15346
15500
|
# A location is a combination of AWS Regions and/or AWS accounts where
|
15347
15501
|
# you want to run the Automation. Use this action to start an
|
15348
15502
|
# Automation in multiple Regions and multiple accounts. For more
|
15349
|
-
# information, see [
|
15350
|
-
#
|
15503
|
+
# information, see [Running Automation workflows in multiple AWS
|
15504
|
+
# Regions and accounts][1] in the *AWS Systems Manager User Guide*.
|
15351
15505
|
#
|
15352
15506
|
#
|
15353
15507
|
#
|
15354
|
-
# [1]:
|
15508
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-automation-multiple-accounts-and-regions.html
|
15355
15509
|
# @return [Array<Types::TargetLocation>]
|
15356
15510
|
#
|
15357
15511
|
# @!attribute [rw] tags
|
@@ -15454,7 +15608,7 @@ module Aws::SSM
|
|
15454
15608
|
# **region** represents the Region identifier for an AWS Region
|
15455
15609
|
# supported by AWS Systems Manager, such as `us-east-2` for the US
|
15456
15610
|
# East (Ohio) Region. For a list of supported **region** values, see
|
15457
|
-
# the **Region** column in [Systems Manager
|
15611
|
+
# the **Region** column in [Systems Manager service endpoints][1] in
|
15458
15612
|
# the *AWS General Reference*.
|
15459
15613
|
#
|
15460
15614
|
# **session-id** represents the ID of a Session Manager session, such
|
@@ -15749,8 +15903,8 @@ module Aws::SSM
|
|
15749
15903
|
# `Key=resource-groups:ResourceTypeFilters,Values=AWS::EC2::INSTANCE,AWS::EC2::VPC
|
15750
15904
|
# `
|
15751
15905
|
#
|
15752
|
-
# This example demonstrates how to target only
|
15753
|
-
#
|
15906
|
+
# This example demonstrates how to target only EC2 instances and VPCs
|
15907
|
+
# in your maintenance window.
|
15754
15908
|
#
|
15755
15909
|
# * (State Manager association targets only) `Key=InstanceIds,Values=* `
|
15756
15910
|
#
|
@@ -15758,8 +15912,8 @@ module Aws::SSM
|
|
15758
15912
|
# AWS Region where the association was created.
|
15759
15913
|
#
|
15760
15914
|
# For information about how to send commands that target instances using
|
15761
|
-
# `Key,Value` parameters, see [
|
15762
|
-
#
|
15915
|
+
# `Key,Value` parameters, see [Targeting multiple instances][1] in the
|
15916
|
+
# *AWS Systems Manager User Guide*.
|
15763
15917
|
#
|
15764
15918
|
#
|
15765
15919
|
#
|
@@ -15781,7 +15935,7 @@ module Aws::SSM
|
|
15781
15935
|
# @!attribute [rw] values
|
15782
15936
|
# User-defined criteria that maps to `Key`. For example, if you
|
15783
15937
|
# specified `tag:ServerRole`, you could specify `value:WebServer` to
|
15784
|
-
# run a command on instances that include
|
15938
|
+
# run a command on instances that include EC2 tags of
|
15785
15939
|
# `ServerRole,WebServer`.
|
15786
15940
|
# @return [Array<String>]
|
15787
15941
|
#
|
@@ -15858,12 +16012,12 @@ module Aws::SSM
|
|
15858
16012
|
|
15859
16013
|
# The specified target instance for the session is not fully configured
|
15860
16014
|
# for use with Session Manager. For more information, see [Getting
|
15861
|
-
#
|
16015
|
+
# started with Session Manager][1] in the *AWS Systems Manager User
|
15862
16016
|
# Guide*.
|
15863
16017
|
#
|
15864
16018
|
#
|
15865
16019
|
#
|
15866
|
-
# [1]:
|
16020
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-getting-started.html
|
15867
16021
|
#
|
15868
16022
|
# @!attribute [rw] message
|
15869
16023
|
# @return [String]
|
@@ -15951,14 +16105,14 @@ module Aws::SSM
|
|
15951
16105
|
end
|
15952
16106
|
|
15953
16107
|
# Microsoft application patching is only available on EC2 instances and
|
15954
|
-
#
|
15955
|
-
# servers and VMs, you must enable
|
15956
|
-
# information, see [Using the
|
16108
|
+
# advanced instances. To patch Microsoft applications on on-premises
|
16109
|
+
# servers and VMs, you must enable advanced instances. For more
|
16110
|
+
# information, see [Using the advanced-instances tier][1] in the *AWS
|
15957
16111
|
# Systems Manager User Guide*.
|
15958
16112
|
#
|
15959
16113
|
#
|
15960
16114
|
#
|
15961
|
-
# [1]:
|
16115
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-managedinstances-advanced.html
|
15962
16116
|
#
|
15963
16117
|
# @!attribute [rw] message
|
15964
16118
|
# @return [String]
|
@@ -16072,6 +16226,7 @@ module Aws::SSM
|
|
16072
16226
|
# max_errors: "MaxErrors",
|
16073
16227
|
# max_concurrency: "MaxConcurrency",
|
16074
16228
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
16229
|
+
# sync_compliance: "AUTO", # accepts AUTO, MANUAL
|
16075
16230
|
# }
|
16076
16231
|
#
|
16077
16232
|
# @!attribute [rw] association_id
|
@@ -16094,8 +16249,7 @@ module Aws::SSM
|
|
16094
16249
|
# @return [String]
|
16095
16250
|
#
|
16096
16251
|
# @!attribute [rw] output_location
|
16097
|
-
# An
|
16098
|
-
# request.
|
16252
|
+
# An S3 bucket where you want to store the results of this request.
|
16099
16253
|
# @return [Types::InstanceAssociationOutputLocation]
|
16100
16254
|
#
|
16101
16255
|
# @!attribute [rw] name
|
@@ -16177,6 +16331,22 @@ module Aws::SSM
|
|
16177
16331
|
# The severity level to assign to the association.
|
16178
16332
|
# @return [String]
|
16179
16333
|
#
|
16334
|
+
# @!attribute [rw] sync_compliance
|
16335
|
+
# The mode for generating association compliance. You can specify
|
16336
|
+
# `AUTO` or `MANUAL`. In `AUTO` mode, the system uses the status of
|
16337
|
+
# the association execution to determine the compliance status. If the
|
16338
|
+
# association execution runs successfully, then the association is
|
16339
|
+
# `COMPLIANT`. If the association execution doesn't run successfully,
|
16340
|
+
# the association is `NON-COMPLIANT`.
|
16341
|
+
#
|
16342
|
+
# In `MANUAL` mode, you must specify the `AssociationId` as a
|
16343
|
+
# parameter for the PutComplianceItems API action. In this case,
|
16344
|
+
# compliance data is not managed by State Manager. It is managed by
|
16345
|
+
# your direct call to the PutComplianceItems API action.
|
16346
|
+
#
|
16347
|
+
# By default, all associations use `AUTO` mode.
|
16348
|
+
# @return [String]
|
16349
|
+
#
|
16180
16350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateAssociationRequest AWS API Documentation
|
16181
16351
|
#
|
16182
16352
|
class UpdateAssociationRequest < Struct.new(
|
@@ -16192,7 +16362,8 @@ module Aws::SSM
|
|
16192
16362
|
:automation_target_parameter_name,
|
16193
16363
|
:max_errors,
|
16194
16364
|
:max_concurrency,
|
16195
|
-
:compliance_severity
|
16365
|
+
:compliance_severity,
|
16366
|
+
:sync_compliance)
|
16196
16367
|
include Aws::Structure
|
16197
16368
|
end
|
16198
16369
|
|
@@ -16331,7 +16502,10 @@ module Aws::SSM
|
|
16331
16502
|
# @return [String]
|
16332
16503
|
#
|
16333
16504
|
# @!attribute [rw] document_version
|
16334
|
-
# (Required) The version of the document that you want to
|
16505
|
+
# (Required) The latest version of the document that you want to
|
16506
|
+
# update. The latest document version can be specified using the
|
16507
|
+
# $LATEST variable or by the version number. Updating a previous
|
16508
|
+
# version of a document is not supported.
|
16335
16509
|
# @return [String]
|
16336
16510
|
#
|
16337
16511
|
# @!attribute [rw] document_format
|
@@ -16752,15 +16926,15 @@ module Aws::SSM
|
|
16752
16926
|
# For more information, see the following topics in the in the *AWS
|
16753
16927
|
# Systems Manager User Guide*\:
|
16754
16928
|
#
|
16755
|
-
# * [
|
16929
|
+
# * [Using service-linked roles for Systems Manager][1]
|
16756
16930
|
#
|
16757
|
-
# * [Should I
|
16758
|
-
#
|
16931
|
+
# * [Should I use a service-linked role or a custom service role to
|
16932
|
+
# run maintenance window tasks? ][2]
|
16759
16933
|
#
|
16760
16934
|
#
|
16761
16935
|
#
|
16762
|
-
# [1]:
|
16763
|
-
# [2]:
|
16936
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/using-service-linked-roles.html#slr-permissions
|
16937
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-maintenance-permissions.html#maintenance-window-tasks-service-role
|
16764
16938
|
# @return [String]
|
16765
16939
|
#
|
16766
16940
|
# @!attribute [rw] task_parameters
|
@@ -17033,11 +17207,11 @@ module Aws::SSM
|
|
17033
17207
|
# resource in the request. Use the `/aws/automations` key in
|
17034
17208
|
# OperationalData to associate an Automation runbook with the OpsItem.
|
17035
17209
|
# To view AWS CLI example commands that use these keys, see [Creating
|
17036
|
-
# OpsItems
|
17210
|
+
# OpsItems manually][1] in the *AWS Systems Manager User Guide*.
|
17037
17211
|
#
|
17038
17212
|
#
|
17039
17213
|
#
|
17040
|
-
# [1]:
|
17214
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-creating-OpsItems.html#OpsCenter-manually-create-OpsItems
|
17041
17215
|
# @return [Hash<String,Types::OpsItemDataValue>]
|
17042
17216
|
#
|
17043
17217
|
# @!attribute [rw] operational_data_to_delete
|
@@ -17063,12 +17237,12 @@ module Aws::SSM
|
|
17063
17237
|
#
|
17064
17238
|
# @!attribute [rw] status
|
17065
17239
|
# The OpsItem status. Status can be `Open`, `In Progress`, or
|
17066
|
-
# `Resolved`. For more information, see [Editing OpsItem
|
17240
|
+
# `Resolved`. For more information, see [Editing OpsItem details][1]
|
17067
17241
|
# in the *AWS Systems Manager User Guide*.
|
17068
17242
|
#
|
17069
17243
|
#
|
17070
17244
|
#
|
17071
|
-
# [1]:
|
17245
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/OpsCenter-working-with-OpsItems.html#OpsCenter-working-with-OpsItems-editing-details
|
17072
17246
|
# @return [String]
|
17073
17247
|
#
|
17074
17248
|
# @!attribute [rw] ops_item_id
|
@@ -17177,8 +17351,9 @@ module Aws::SSM
|
|
17177
17351
|
# A list of explicitly approved patches for the baseline.
|
17178
17352
|
#
|
17179
17353
|
# For information about accepted formats for lists of approved patches
|
17180
|
-
# and rejected patches, see [
|
17181
|
-
#
|
17354
|
+
# and rejected patches, see [About package name formats for approved
|
17355
|
+
# and rejected patch lists][1] in the *AWS Systems Manager User
|
17356
|
+
# Guide*.
|
17182
17357
|
#
|
17183
17358
|
#
|
17184
17359
|
#
|
@@ -17200,8 +17375,9 @@ module Aws::SSM
|
|
17200
17375
|
# A list of explicitly rejected patches for the baseline.
|
17201
17376
|
#
|
17202
17377
|
# For information about accepted formats for lists of approved patches
|
17203
|
-
# and rejected patches, see [
|
17204
|
-
#
|
17378
|
+
# and rejected patches, see [About package name formats for approved
|
17379
|
+
# and rejected patch lists][1] in the *AWS Systems Manager User
|
17380
|
+
# Guide*.
|
17205
17381
|
#
|
17206
17382
|
#
|
17207
17383
|
#
|
@@ -17369,11 +17545,8 @@ module Aws::SSM
|
|
17369
17545
|
# @return [String]
|
17370
17546
|
#
|
17371
17547
|
# @!attribute [rw] sync_type
|
17372
|
-
# The type of resource data sync.
|
17373
|
-
#
|
17374
|
-
# to an Amazon S3 bucket. If the `SyncType` is `SyncFromSource` then
|
17375
|
-
# the resource data sync synchronizes data from AWS Organizations or
|
17376
|
-
# from multiple AWS Regions.
|
17548
|
+
# The type of resource data sync. The supported `SyncType` is
|
17549
|
+
# SyncFromSource.
|
17377
17550
|
# @return [String]
|
17378
17551
|
#
|
17379
17552
|
# @!attribute [rw] sync_source
|
@@ -17404,11 +17577,32 @@ module Aws::SSM
|
|
17404
17577
|
# }
|
17405
17578
|
#
|
17406
17579
|
# @!attribute [rw] setting_id
|
17407
|
-
# The
|
17580
|
+
# The Amazon Resource Name (ARN) of the service setting to reset. For
|
17581
|
+
# example,
|
17582
|
+
# `arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled`.
|
17583
|
+
# The setting ID can be one of the following.
|
17584
|
+
#
|
17585
|
+
# * `/ssm/parameter-store/default-parameter-tier`
|
17586
|
+
#
|
17587
|
+
# * `/ssm/parameter-store/high-throughput-enabled`
|
17588
|
+
#
|
17589
|
+
# * `/ssm/managed-instance/activation-tier`
|
17408
17590
|
# @return [String]
|
17409
17591
|
#
|
17410
17592
|
# @!attribute [rw] setting_value
|
17411
|
-
# The new value to specify for the service setting.
|
17593
|
+
# The new value to specify for the service setting. For the
|
17594
|
+
# `/ssm/parameter-store/default-parameter-tier` setting ID, the
|
17595
|
+
# setting value can be one of the following.
|
17596
|
+
#
|
17597
|
+
# * Standard
|
17598
|
+
#
|
17599
|
+
# * Advanced
|
17600
|
+
#
|
17601
|
+
# * Intelligent-Tiering
|
17602
|
+
#
|
17603
|
+
# For the `/ssm/parameter-store/high-throughput-enabled`, and
|
17604
|
+
# `/ssm/managed-instance/activation-tier` setting IDs, the setting
|
17605
|
+
# value can be true or false.
|
17412
17606
|
# @return [String]
|
17413
17607
|
#
|
17414
17608
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateServiceSettingRequest AWS API Documentation
|