aws-sdk-ssm 1.148.0 → 1.149.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9c62005d3c9a82bae53d5a9200469d944ddce08dc3973f936d574ec8a4f41907
4
- data.tar.gz: de20cd86c845d97e01806553dc51784058dc61b0c2524c5a2fd786ab915a836e
3
+ metadata.gz: 9788959f97d846bf078ddf00281fb56a29065bde4bb723fb03c8e881c5783ca4
4
+ data.tar.gz: cfdc759517aa8ab388f1732ec4c4caaa5e09d7925ab78b67ae92eea720515047
5
5
  SHA512:
6
- metadata.gz: 28175c19e99bfeb72cbc7d66a43f58f7224c0c67e0347d14620cba1b8f058d0044ba3027f615d41ef9fecdd83a5533cbd184d95ed1123657362308964160e797
7
- data.tar.gz: a694271bd977943678ebec909e246c16fb6fedb7180deeec48acbd4445c1ba23cbfabed93ed3c2c42c213623eedc586ee1a49c6e4b7a59f21e5f00404ae8d973
6
+ metadata.gz: 1df2ae005beff500eb05abfe232a8321eab4e4491775110dd6352c1cdf96ed1b57c76667ed0e8fd8682fb80f1028d192cfe12d7c67875fa43c6fdfe3e26c98f3
7
+ data.tar.gz: 5c930b0583f7e5886f747a95f03b4a6db86487b9e2fad60063c3409e3c78d4062c4bee8238ff0d57799238c1bc9df82f5b1049cb197e3145f9c18d7da9c5c1e9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.149.0 (2023-02-22)
5
+ ------------------
6
+
7
+ * Feature - Document only update for Feb 2023
8
+
4
9
  1.148.0 (2023-01-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.148.0
1
+ 1.149.0
@@ -750,8 +750,8 @@ module Aws::SSM
750
750
  # contains the configuration information for the managed node.
751
751
  #
752
752
  # You can specify Amazon Web Services-predefined documents, documents
753
- # you created, or a document that is shared with you from another
754
- # account.
753
+ # you created, or a document that is shared with you from another Amazon
754
+ # Web Services account.
755
755
  #
756
756
  # For Systems Manager documents (SSM documents) that are shared with you
757
757
  # from other Amazon Web Services accounts, you must specify the complete
@@ -1293,9 +1293,11 @@ module Aws::SSM
1293
1293
  # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-ssm-docs.html
1294
1294
  #
1295
1295
  # @option params [required, String] :content
1296
- # The content for the new SSM document in JSON or YAML format. We
1297
- # recommend storing the contents for your new document in an external
1298
- # JSON or YAML file and referencing the file in a command.
1296
+ # The content for the new SSM document in JSON or YAML format. The
1297
+ # content of the document must not exceed 64KB. This quota also includes
1298
+ # the content specified for input parameters at runtime. We recommend
1299
+ # storing the contents for your new document in an external JSON or YAML
1300
+ # file and referencing the file in a command.
1299
1301
  #
1300
1302
  # For examples, see the following topics in the *Amazon Web Services
1301
1303
  # Systems Manager User Guide*.
@@ -6992,6 +6994,8 @@ module Aws::SSM
6992
6994
  # The ID of the service setting to get. The setting ID can be one of the
6993
6995
  # following.
6994
6996
  #
6997
+ # * `/ssm/managed-instance/default-ec2-instance-management-role`
6998
+ #
6995
6999
  # * `/ssm/automation/customer-script-log-destination`
6996
7000
  #
6997
7001
  # * `/ssm/automation/customer-script-log-group-name`
@@ -8269,9 +8273,9 @@ module Aws::SSM
8269
8273
 
8270
8274
  # Shares a Amazon Web Services Systems Manager document (SSM
8271
8275
  # document)publicly or privately. If you share a document privately, you
8272
- # must specify the Amazon Web Services user account IDs for those people
8273
- # who can use the document. If you share a document publicly, you must
8274
- # specify *All* as the account ID.
8276
+ # must specify the Amazon Web Services user IDs for those people who can
8277
+ # use the document. If you share a document publicly, you must specify
8278
+ # *All* as the account ID.
8275
8279
  #
8276
8280
  # @option params [required, String] :name
8277
8281
  # The name of the document that you want to share.
@@ -8281,16 +8285,15 @@ module Aws::SSM
8281
8285
  # *Share*.
8282
8286
  #
8283
8287
  # @option params [Array<String>] :account_ids_to_add
8284
- # The Amazon Web Services user accounts that should have access to the
8285
- # document. The account IDs can either be a group of account IDs or
8286
- # *All*.
8288
+ # The Amazon Web Services users that should have access to the document.
8289
+ # The account IDs can either be a group of account IDs or *All*.
8287
8290
  #
8288
8291
  # @option params [Array<String>] :account_ids_to_remove
8289
- # The Amazon Web Services user accounts that should no longer have
8290
- # access to the document. The Amazon Web Services user account can
8291
- # either be a group of account IDs or *All*. This action has a higher
8292
- # priority than *AccountIdsToAdd*. If you specify an account ID to add
8293
- # and the same ID to remove, the system removes access to the document.
8292
+ # The Amazon Web Services users that should no longer have access to the
8293
+ # document. The Amazon Web Services user can either be a group of
8294
+ # account IDs or *All*. This action has a higher priority than
8295
+ # *AccountIdsToAdd*. If you specify an ID to add and the same ID to
8296
+ # remove, the system removes access to the document.
8294
8297
  #
8295
8298
  # @option params [String] :shared_document_version
8296
8299
  # (Optional) The version of the document to share. If it isn't
@@ -8574,20 +8577,18 @@ module Aws::SSM
8574
8577
  #
8575
8578
  # @option params [String] :key_id
8576
8579
  # The Key Management Service (KMS) ID that you want to use to encrypt a
8577
- # parameter. Either the default KMS key automatically assigned to your
8578
- # Amazon Web Services account or a custom key. Required for parameters
8579
- # that use the `SecureString` data type.
8580
+ # parameter. Use a custom key for better security. Required for
8581
+ # parameters that use the `SecureString` data type.
8580
8582
  #
8581
8583
  # If you don't specify a key ID, the system uses the default key
8582
- # associated with your Amazon Web Services account.
8583
- #
8584
- # * To use your default KMS key, choose the `SecureString` data type,
8585
- # and do *not* specify the `Key ID` when you create the parameter. The
8586
- # system automatically populates `Key ID` with your default KMS key.
8584
+ # associated with your Amazon Web Services account which is not as
8585
+ # secure as using a custom key.
8587
8586
  #
8588
8587
  # * To use a custom KMS key, choose the `SecureString` data type with
8589
8588
  # the `Key ID` parameter.
8590
8589
  #
8590
+ # ^
8591
+ #
8591
8592
  # @option params [Boolean] :overwrite
8592
8593
  # Overwrite an existing parameter. The default value is `false`.
8593
8594
  #
@@ -8737,14 +8738,29 @@ module Aws::SSM
8737
8738
  # When you create a `String` parameter and specify `aws:ec2:image`,
8738
8739
  # Amazon Web Services Systems Manager validates the parameter value is
8739
8740
  # in the required format, such as `ami-12345abcdeEXAMPLE`, and that the
8740
- # specified AMI is available in your Amazon Web Services account. For
8741
- # more information, see [Native parameter support for Amazon Machine
8742
- # Image (AMI) IDs][1] in the *Amazon Web Services Systems Manager User
8743
- # Guide*.
8741
+ # specified AMI is available in your Amazon Web Services account.
8742
+ #
8743
+ # <note markdown="1"> If the action is successful, the service sends back an HTTP 200
8744
+ # response which indicates a successful `PutParameter` call for all
8745
+ # cases except for data type `aws:ec2:image`. If you call `PutParameter`
8746
+ # with `aws:ec2:image` data type, a successful HTTP 200 response does
8747
+ # not guarantee that your parameter was successfully created or updated.
8748
+ # The `aws:ec2:image` value is validated asynchronously, and the
8749
+ # `PutParameter` call returns before the validation is complete. If you
8750
+ # submit an invalid AMI value, the PutParameter operation will return
8751
+ # success, but the asynchronous validation will fail and the parameter
8752
+ # will not be created or updated. To monitor whether your
8753
+ # `aws:ec2:image` parameters are created successfully, see [Setting up
8754
+ # notifications or trigger actions based on Parameter Store events][1].
8755
+ # For more information about AMI format validation , see [Native
8756
+ # parameter support for Amazon Machine Image (AMI) IDs][2].
8757
+ #
8758
+ # </note>
8744
8759
  #
8745
8760
  #
8746
8761
  #
8747
- # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-ec2-aliases.html
8762
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-cwe.html
8763
+ # [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-ec2-aliases.html
8748
8764
  #
8749
8765
  # @return [Types::PutParameterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8750
8766
  #
@@ -10298,14 +10314,13 @@ module Aws::SSM
10298
10314
  # the DescribeAssociation API operation and make a note of all optional
10299
10315
  # parameters required for your `UpdateAssociation` call.
10300
10316
  #
10301
- # In order to call this API operation, your Identity and Access
10302
- # Management (IAM) user account, group, or role must be configured with
10303
- # permission to call the DescribeAssociation API operation. If you
10304
- # don't have permission to call `DescribeAssociation`, then you receive
10305
- # the following error: `An error occurred (AccessDeniedException) when
10306
- # calling the UpdateAssociation operation: User: <user_arn> isn't
10307
- # authorized to perform: ssm:DescribeAssociation on resource:
10308
- # <resource_arn>`
10317
+ # In order to call this API operation, a user, group, or role must be
10318
+ # granted permission to call the DescribeAssociation API operation. If
10319
+ # you don't have permission to call `DescribeAssociation`, then you
10320
+ # receive the following error: `An error occurred
10321
+ # (AccessDeniedException) when calling the UpdateAssociation operation:
10322
+ # User: <user_arn> isn't authorized to perform: ssm:DescribeAssociation
10323
+ # on resource: <resource_arn>`
10309
10324
  #
10310
10325
  # When you update an association, the association immediately runs
10311
10326
  # against the specified targets. You can add the
@@ -12065,6 +12080,8 @@ module Aws::SSM
12065
12080
  # `arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled`.
12066
12081
  # The setting ID can be one of the following.
12067
12082
  #
12083
+ # * `/ssm/managed-instance/default-ec2-instance-management-role`
12084
+ #
12068
12085
  # * `/ssm/automation/customer-script-log-destination`
12069
12086
  #
12070
12087
  # * `/ssm/automation/customer-script-log-group-name`
@@ -12131,7 +12148,7 @@ module Aws::SSM
12131
12148
  params: params,
12132
12149
  config: config)
12133
12150
  context[:gem_name] = 'aws-sdk-ssm'
12134
- context[:gem_version] = '1.148.0'
12151
+ context[:gem_version] = '1.149.0'
12135
12152
  Seahorse::Client::Request.new(handlers, context)
12136
12153
  end
12137
12154
 
@@ -50,9 +50,6 @@ module Aws::SSM
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
- if self[:region].nil?
54
- raise ArgumentError, "Missing required EndpointParameter: :region"
55
- end
56
53
  self[:use_dual_stack] = options[:use_dual_stack]
57
54
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
58
55
  if self[:use_dual_stack].nil?
@@ -14,39 +14,42 @@ module Aws::SSM
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
16
  endpoint = parameters.endpoint
17
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
- if Aws::Endpoints::Matchers.set?(endpoint)
19
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
- end
22
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
- end
25
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
18
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
26
20
  end
27
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
- return Aws::Endpoints::Endpoint.new(url: "https://ssm-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
- end
31
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
21
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
32
23
  end
33
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
36
- return Aws::Endpoints::Endpoint.new(url: "https://ssm.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
37
31
  end
38
- return Aws::Endpoints::Endpoint.new(url: "https://ssm-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
39
33
  end
40
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
41
- end
42
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
43
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
44
- return Aws::Endpoints::Endpoint.new(url: "https://ssm.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
37
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm.#{region}.amazonaws.com", headers: {}, properties: {})
38
+ end
39
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
40
+ end
41
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
42
+ end
43
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
44
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
45
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
46
+ end
47
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
45
48
  end
46
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
49
+ return Aws::Endpoints::Endpoint.new(url: "https://ssm.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
47
50
  end
48
- return Aws::Endpoints::Endpoint.new(url: "https://ssm.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
49
51
  end
52
+ raise ArgumentError, "Invalid Configuration: Missing Region"
50
53
  raise ArgumentError, 'No endpoint could be resolved'
51
54
 
52
55
  end
@@ -178,9 +178,11 @@ module Aws::SSM
178
178
  # automation or command.
179
179
  #
180
180
  # @!attribute [rw] ignore_poll_alarm_failure
181
- # If you specify `true` for this value, your automation or command
182
- # continue to run even if we can't gather information about the state
183
- # of your CloudWatch alarm. The default value is `false`.
181
+ # When this value is *true*, your automation or command continues to
182
+ # run in cases where we cant retrieve alarm status information from
183
+ # CloudWatch. In cases where we successfully retrieve an alarm status
184
+ # of OK or INSUFFICIENT\_DATA, the automation or command continues to
185
+ # run, regardless of this value. Default is *false*.
184
186
  # @return [Boolean]
185
187
  #
186
188
  # @!attribute [rw] alarms
@@ -2991,7 +2993,7 @@ module Aws::SSM
2991
2993
  #
2992
2994
  # You can specify Amazon Web Services-predefined documents, documents
2993
2995
  # you created, or a document that is shared with you from another
2994
- # account.
2996
+ # Amazon Web Services account.
2995
2997
  #
2996
2998
  # For Systems Manager documents (SSM documents) that are shared with
2997
2999
  # you from other Amazon Web Services accounts, you must specify the
@@ -3232,7 +3234,9 @@ module Aws::SSM
3232
3234
  end
3233
3235
 
3234
3236
  # @!attribute [rw] content
3235
- # The content for the new SSM document in JSON or YAML format. We
3237
+ # The content for the new SSM document in JSON or YAML format. The
3238
+ # content of the document must not exceed 64KB. This quota also
3239
+ # includes the content specified for input parameters at runtime. We
3236
3240
  # recommend storing the contents for your new document in an external
3237
3241
  # JSON or YAML file and referencing the file in a command.
3238
3242
  #
@@ -6344,7 +6348,7 @@ module Aws::SSM
6344
6348
  # @return [String]
6345
6349
  #
6346
6350
  # @!attribute [rw] owner
6347
- # The Amazon Web Services user account that created the document.
6351
+ # The Amazon Web Services user that created the document.
6348
6352
  # @return [String]
6349
6353
  #
6350
6354
  # @!attribute [rw] created_date
@@ -6529,7 +6533,7 @@ module Aws::SSM
6529
6533
  # @return [String]
6530
6534
  #
6531
6535
  # @!attribute [rw] owner
6532
- # The Amazon Web Services user account that created the document.
6536
+ # The Amazon Web Services user that created the document.
6533
6537
  # @return [String]
6534
6538
  #
6535
6539
  # @!attribute [rw] version_name
@@ -6730,7 +6734,7 @@ module Aws::SSM
6730
6734
  include Aws::Structure
6731
6735
  end
6732
6736
 
6733
- # Parameters specified in a System Manager document that run on the
6737
+ # Parameters specified in a Systems Manager document that run on the
6734
6738
  # server when the command is run.
6735
6739
  #
6736
6740
  # @!attribute [rw] name
@@ -6763,9 +6767,9 @@ module Aws::SSM
6763
6767
  include Aws::Structure
6764
6768
  end
6765
6769
 
6766
- # The document can't be shared with more Amazon Web Services user
6767
- # accounts. You can specify a maximum of 20 accounts per API operation
6768
- # to share a private document.
6770
+ # The document can't be shared with more Amazon Web Services accounts.
6771
+ # You can specify a maximum of 20 accounts per API operation to share a
6772
+ # private document.
6769
6773
  #
6770
6774
  # By default, you can share a private document with a maximum of 1,000
6771
6775
  # accounts and publicly share up to five documents.
@@ -8905,6 +8909,8 @@ module Aws::SSM
8905
8909
  # The ID of the service setting to get. The setting ID can be one of
8906
8910
  # the following.
8907
8911
  #
8912
+ # * `/ssm/managed-instance/default-ec2-instance-management-role`
8913
+ #
8908
8914
  # * `/ssm/automation/customer-script-log-destination`
8909
8915
  #
8910
8916
  # * `/ssm/automation/customer-script-log-group-name`
@@ -12453,18 +12459,17 @@ module Aws::SSM
12453
12459
  # @return [String]
12454
12460
  #
12455
12461
  # @!attribute [rw] account_ids_to_add
12456
- # The Amazon Web Services user accounts that should have access to the
12462
+ # The Amazon Web Services users that should have access to the
12457
12463
  # document. The account IDs can either be a group of account IDs or
12458
12464
  # *All*.
12459
12465
  # @return [Array<String>]
12460
12466
  #
12461
12467
  # @!attribute [rw] account_ids_to_remove
12462
- # The Amazon Web Services user accounts that should no longer have
12463
- # access to the document. The Amazon Web Services user account can
12464
- # either be a group of account IDs or *All*. This action has a higher
12465
- # priority than *AccountIdsToAdd*. If you specify an account ID to add
12466
- # and the same ID to remove, the system removes access to the
12467
- # document.
12468
+ # The Amazon Web Services users that should no longer have access to
12469
+ # the document. The Amazon Web Services user can either be a group of
12470
+ # account IDs or *All*. This action has a higher priority than
12471
+ # *AccountIdsToAdd*. If you specify an ID to add and the same ID to
12472
+ # remove, the system removes access to the document.
12468
12473
  # @return [Array<String>]
12469
12474
  #
12470
12475
  # @!attribute [rw] shared_document_version
@@ -14695,20 +14700,17 @@ module Aws::SSM
14695
14700
  #
14696
14701
  # @!attribute [rw] key_id
14697
14702
  # The Key Management Service (KMS) ID that you want to use to encrypt
14698
- # a parameter. Either the default KMS key automatically assigned to
14699
- # your Amazon Web Services account or a custom key. Required for
14703
+ # a parameter. Use a custom key for better security. Required for
14700
14704
  # parameters that use the `SecureString` data type.
14701
14705
  #
14702
14706
  # If you don't specify a key ID, the system uses the default key
14703
- # associated with your Amazon Web Services account.
14704
- #
14705
- # * To use your default KMS key, choose the `SecureString` data type,
14706
- # and do *not* specify the `Key ID` when you create the parameter.
14707
- # The system automatically populates `Key ID` with your default KMS
14708
- # key.
14707
+ # associated with your Amazon Web Services account which is not as
14708
+ # secure as using a custom key.
14709
14709
  #
14710
14710
  # * To use a custom KMS key, choose the `SecureString` data type with
14711
14711
  # the `Key ID` parameter.
14712
+ #
14713
+ # ^
14712
14714
  # @return [String]
14713
14715
  #
14714
14716
  # @!attribute [rw] overwrite
@@ -14867,13 +14869,29 @@ module Aws::SSM
14867
14869
  # Amazon Web Services Systems Manager validates the parameter value is
14868
14870
  # in the required format, such as `ami-12345abcdeEXAMPLE`, and that
14869
14871
  # the specified AMI is available in your Amazon Web Services account.
14870
- # For more information, see [Native parameter support for Amazon
14871
- # Machine Image (AMI) IDs][1] in the *Amazon Web Services Systems
14872
- # Manager User Guide*.
14873
14872
  #
14873
+ # <note markdown="1"> If the action is successful, the service sends back an HTTP 200
14874
+ # response which indicates a successful `PutParameter` call for all
14875
+ # cases except for data type `aws:ec2:image`. If you call
14876
+ # `PutParameter` with `aws:ec2:image` data type, a successful HTTP 200
14877
+ # response does not guarantee that your parameter was successfully
14878
+ # created or updated. The `aws:ec2:image` value is validated
14879
+ # asynchronously, and the `PutParameter` call returns before the
14880
+ # validation is complete. If you submit an invalid AMI value, the
14881
+ # PutParameter operation will return success, but the asynchronous
14882
+ # validation will fail and the parameter will not be created or
14883
+ # updated. To monitor whether your `aws:ec2:image` parameters are
14884
+ # created successfully, see [Setting up notifications or trigger
14885
+ # actions based on Parameter Store events][1]. For more information
14886
+ # about AMI format validation , see [Native parameter support for
14887
+ # Amazon Machine Image (AMI) IDs][2].
14888
+ #
14889
+ # </note>
14874
14890
  #
14875
14891
  #
14876
- # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-ec2-aliases.html
14892
+ #
14893
+ # [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-cwe.html
14894
+ # [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-ec2-aliases.html
14877
14895
  # @return [String]
14878
14896
  #
14879
14897
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PutParameterRequest AWS API Documentation
@@ -16625,8 +16643,7 @@ module Aws::SSM
16625
16643
  # @return [String]
16626
16644
  #
16627
16645
  # @!attribute [rw] owner
16628
- # The ID of the Amazon Web Services user account that started the
16629
- # session.
16646
+ # The ID of the Amazon Web Services user that started the session.
16630
16647
  # @return [String]
16631
16648
  #
16632
16649
  # @!attribute [rw] reason
@@ -16683,8 +16700,8 @@ module Aws::SSM
16683
16700
  # * Target: Specify a managed node to which session connections have
16684
16701
  # been made.
16685
16702
  #
16686
- # * Owner: Specify an Amazon Web Services user account to see a list
16687
- # of sessions started by that user.
16703
+ # * Owner: Specify an Amazon Web Services user to see a list of
16704
+ # sessions started by that user.
16688
16705
  #
16689
16706
  # * Status: Specify a valid session status to see a list of all
16690
16707
  # sessions with that status. Status values you can specify include:
@@ -19198,6 +19215,8 @@ module Aws::SSM
19198
19215
  # `arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled`.
19199
19216
  # The setting ID can be one of the following.
19200
19217
  #
19218
+ # * `/ssm/managed-instance/default-ec2-instance-management-role`
19219
+ #
19201
19220
  # * `/ssm/automation/customer-script-log-destination`
19202
19221
  #
19203
19222
  # * `/ssm/automation/customer-script-log-group-name`
data/lib/aws-sdk-ssm.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-ssm/customizations'
53
53
  # @!group service
54
54
  module Aws::SSM
55
55
 
56
- GEM_VERSION = '1.148.0'
56
+ GEM_VERSION = '1.149.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.148.0
4
+ version: 1.149.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core