aws-sdk-iam 1.32.0 → 1.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-iam.rb +1 -1
- data/lib/aws-sdk-iam/access_key.rb +1 -0
- data/lib/aws-sdk-iam/access_key_pair.rb +1 -0
- data/lib/aws-sdk-iam/account_password_policy.rb +1 -0
- data/lib/aws-sdk-iam/account_summary.rb +1 -0
- data/lib/aws-sdk-iam/assume_role_policy.rb +5 -4
- data/lib/aws-sdk-iam/client.rb +195 -132
- data/lib/aws-sdk-iam/client_api.rb +8 -0
- data/lib/aws-sdk-iam/current_user.rb +1 -0
- data/lib/aws-sdk-iam/group.rb +11 -10
- data/lib/aws-sdk-iam/group_policy.rb +5 -4
- data/lib/aws-sdk-iam/instance_profile.rb +1 -0
- data/lib/aws-sdk-iam/login_profile.rb +11 -10
- data/lib/aws-sdk-iam/mfa_device.rb +1 -0
- data/lib/aws-sdk-iam/policy.rb +11 -10
- data/lib/aws-sdk-iam/policy_version.rb +1 -0
- data/lib/aws-sdk-iam/resource.rb +51 -51
- data/lib/aws-sdk-iam/role.rb +3 -2
- data/lib/aws-sdk-iam/role_policy.rb +5 -4
- data/lib/aws-sdk-iam/saml_provider.rb +1 -0
- data/lib/aws-sdk-iam/server_certificate.rb +3 -2
- data/lib/aws-sdk-iam/signing_certificate.rb +1 -0
- data/lib/aws-sdk-iam/types.rb +267 -155
- data/lib/aws-sdk-iam/user.rb +17 -16
- data/lib/aws-sdk-iam/user_policy.rb +5 -4
- data/lib/aws-sdk-iam/virtual_mfa_device.rb +1 -0
- metadata +2 -2
@@ -246,6 +246,7 @@ module Aws::IAM
|
|
246
246
|
PasswordPolicy = Shapes::StructureShape.new(name: 'PasswordPolicy')
|
247
247
|
PasswordPolicyViolationException = Shapes::StructureShape.new(name: 'PasswordPolicyViolationException')
|
248
248
|
PermissionsBoundaryAttachmentType = Shapes::StringShape.new(name: 'PermissionsBoundaryAttachmentType')
|
249
|
+
PermissionsBoundaryDecisionDetail = Shapes::StructureShape.new(name: 'PermissionsBoundaryDecisionDetail')
|
249
250
|
Policy = Shapes::StructureShape.new(name: 'Policy')
|
250
251
|
PolicyDetail = Shapes::StructureShape.new(name: 'PolicyDetail')
|
251
252
|
PolicyEvaluationDecisionType = Shapes::StringShape.new(name: 'PolicyEvaluationDecisionType')
|
@@ -813,6 +814,7 @@ module Aws::IAM
|
|
813
814
|
EvaluationResult.add_member(:matched_statements, Shapes::ShapeRef.new(shape: StatementListType, location_name: "MatchedStatements"))
|
814
815
|
EvaluationResult.add_member(:missing_context_values, Shapes::ShapeRef.new(shape: ContextKeyNamesResultListType, location_name: "MissingContextValues"))
|
815
816
|
EvaluationResult.add_member(:organizations_decision_detail, Shapes::ShapeRef.new(shape: OrganizationsDecisionDetail, location_name: "OrganizationsDecisionDetail"))
|
817
|
+
EvaluationResult.add_member(:permissions_boundary_decision_detail, Shapes::ShapeRef.new(shape: PermissionsBoundaryDecisionDetail, location_name: "PermissionsBoundaryDecisionDetail"))
|
816
818
|
EvaluationResult.add_member(:eval_decision_details, Shapes::ShapeRef.new(shape: EvalDecisionDetailsType, location_name: "EvalDecisionDetails"))
|
817
819
|
EvaluationResult.add_member(:resource_specific_results, Shapes::ShapeRef.new(shape: ResourceSpecificResultListType, location_name: "ResourceSpecificResults"))
|
818
820
|
EvaluationResult.struct_class = Types::EvaluationResult
|
@@ -1420,6 +1422,9 @@ module Aws::IAM
|
|
1420
1422
|
PasswordPolicyViolationException.add_member(:message, Shapes::ShapeRef.new(shape: passwordPolicyViolationMessage, location_name: "message"))
|
1421
1423
|
PasswordPolicyViolationException.struct_class = Types::PasswordPolicyViolationException
|
1422
1424
|
|
1425
|
+
PermissionsBoundaryDecisionDetail.add_member(:allowed_by_permissions_boundary, Shapes::ShapeRef.new(shape: booleanType, location_name: "AllowedByPermissionsBoundary"))
|
1426
|
+
PermissionsBoundaryDecisionDetail.struct_class = Types::PermissionsBoundaryDecisionDetail
|
1427
|
+
|
1423
1428
|
Policy.add_member(:policy_name, Shapes::ShapeRef.new(shape: policyNameType, location_name: "PolicyName"))
|
1424
1429
|
Policy.add_member(:policy_id, Shapes::ShapeRef.new(shape: idType, location_name: "PolicyId"))
|
1425
1430
|
Policy.add_member(:arn, Shapes::ShapeRef.new(shape: arnType, location_name: "Arn"))
|
@@ -1530,6 +1535,7 @@ module Aws::IAM
|
|
1530
1535
|
ResourceSpecificResult.add_member(:matched_statements, Shapes::ShapeRef.new(shape: StatementListType, location_name: "MatchedStatements"))
|
1531
1536
|
ResourceSpecificResult.add_member(:missing_context_values, Shapes::ShapeRef.new(shape: ContextKeyNamesResultListType, location_name: "MissingContextValues"))
|
1532
1537
|
ResourceSpecificResult.add_member(:eval_decision_details, Shapes::ShapeRef.new(shape: EvalDecisionDetailsType, location_name: "EvalDecisionDetails"))
|
1538
|
+
ResourceSpecificResult.add_member(:permissions_boundary_decision_detail, Shapes::ShapeRef.new(shape: PermissionsBoundaryDecisionDetail, location_name: "PermissionsBoundaryDecisionDetail"))
|
1533
1539
|
ResourceSpecificResult.struct_class = Types::ResourceSpecificResult
|
1534
1540
|
|
1535
1541
|
ResourceSpecificResultListType.member = Shapes::ShapeRef.new(shape: ResourceSpecificResult)
|
@@ -1662,6 +1668,7 @@ module Aws::IAM
|
|
1662
1668
|
SigningCertificate.struct_class = Types::SigningCertificate
|
1663
1669
|
|
1664
1670
|
SimulateCustomPolicyRequest.add_member(:policy_input_list, Shapes::ShapeRef.new(shape: SimulationPolicyListType, required: true, location_name: "PolicyInputList"))
|
1671
|
+
SimulateCustomPolicyRequest.add_member(:permissions_boundary_policy_input_list, Shapes::ShapeRef.new(shape: SimulationPolicyListType, location_name: "PermissionsBoundaryPolicyInputList"))
|
1665
1672
|
SimulateCustomPolicyRequest.add_member(:action_names, Shapes::ShapeRef.new(shape: ActionNameListType, required: true, location_name: "ActionNames"))
|
1666
1673
|
SimulateCustomPolicyRequest.add_member(:resource_arns, Shapes::ShapeRef.new(shape: ResourceNameListType, location_name: "ResourceArns"))
|
1667
1674
|
SimulateCustomPolicyRequest.add_member(:resource_policy, Shapes::ShapeRef.new(shape: policyDocumentType, location_name: "ResourcePolicy"))
|
@@ -1680,6 +1687,7 @@ module Aws::IAM
|
|
1680
1687
|
|
1681
1688
|
SimulatePrincipalPolicyRequest.add_member(:policy_source_arn, Shapes::ShapeRef.new(shape: arnType, required: true, location_name: "PolicySourceArn"))
|
1682
1689
|
SimulatePrincipalPolicyRequest.add_member(:policy_input_list, Shapes::ShapeRef.new(shape: SimulationPolicyListType, location_name: "PolicyInputList"))
|
1690
|
+
SimulatePrincipalPolicyRequest.add_member(:permissions_boundary_policy_input_list, Shapes::ShapeRef.new(shape: SimulationPolicyListType, location_name: "PermissionsBoundaryPolicyInputList"))
|
1683
1691
|
SimulatePrincipalPolicyRequest.add_member(:action_names, Shapes::ShapeRef.new(shape: ActionNameListType, required: true, location_name: "ActionNames"))
|
1684
1692
|
SimulatePrincipalPolicyRequest.add_member(:resource_arns, Shapes::ShapeRef.new(shape: ResourceNameListType, location_name: "ResourceArns"))
|
1685
1693
|
SimulatePrincipalPolicyRequest.add_member(:resource_policy, Shapes::ShapeRef.new(shape: policyDocumentType, location_name: "ResourcePolicy"))
|
data/lib/aws-sdk-iam/group.rb
CHANGED
@@ -21,6 +21,7 @@ module Aws::IAM
|
|
21
21
|
@name = extract_name(args, options)
|
22
22
|
@data = options.delete(:data)
|
23
23
|
@client = options.delete(:client) || Client.new(options)
|
24
|
+
@waiter_block_warned = false
|
24
25
|
end
|
25
26
|
|
26
27
|
# @!group Read-Only Attributes
|
@@ -271,8 +272,8 @@ module Aws::IAM
|
|
271
272
|
# This parameter allows (through its [regex pattern][2]) a string of
|
272
273
|
# characters consisting of either a forward slash (/) by itself or a
|
273
274
|
# string that must begin and end with forward slashes. In addition, it
|
274
|
-
# can contain any ASCII character from the ! (
|
275
|
-
# character (
|
275
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
276
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
276
277
|
# and upper and lowercased letters.
|
277
278
|
#
|
278
279
|
#
|
@@ -320,13 +321,13 @@ module Aws::IAM
|
|
320
321
|
# characters consisting of the following:
|
321
322
|
#
|
322
323
|
# * Any printable ASCII character ranging from the space character
|
323
|
-
# (
|
324
|
+
# (`\u0020`) through the end of the ASCII character range
|
324
325
|
#
|
325
326
|
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
326
|
-
# character set (through
|
327
|
+
# character set (through `\u00FF`)
|
327
328
|
#
|
328
|
-
# * The special characters tab (
|
329
|
-
# carriage return (
|
329
|
+
# * The special characters tab (`\u0009`), line feed (`\u000A`), and
|
330
|
+
# carriage return (`\u000D`)
|
330
331
|
#
|
331
332
|
#
|
332
333
|
#
|
@@ -413,8 +414,8 @@ module Aws::IAM
|
|
413
414
|
# This parameter allows (through its [regex pattern][1]) a string of
|
414
415
|
# characters consisting of either a forward slash (/) by itself or a
|
415
416
|
# string that must begin and end with forward slashes. In addition, it
|
416
|
-
# can contain any ASCII character from the ! (
|
417
|
-
# character (
|
417
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
418
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
418
419
|
# and upper and lowercased letters.
|
419
420
|
#
|
420
421
|
#
|
@@ -453,8 +454,8 @@ module Aws::IAM
|
|
453
454
|
# This parameter allows (through its [regex pattern][1]) a string of
|
454
455
|
# characters consisting of either a forward slash (/) by itself or a
|
455
456
|
# string that must begin and end with forward slashes. In addition, it
|
456
|
-
# can contain any ASCII character from the ! (
|
457
|
-
# character (
|
457
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
458
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
458
459
|
# and upper and lowercased letters.
|
459
460
|
#
|
460
461
|
#
|
@@ -24,6 +24,7 @@ module Aws::IAM
|
|
24
24
|
@name = extract_name(args, options)
|
25
25
|
@data = options.delete(:data)
|
26
26
|
@client = options.delete(:client) || Client.new(options)
|
27
|
+
@waiter_block_warned = false
|
27
28
|
end
|
28
29
|
|
29
30
|
# @!group Read-Only Attributes
|
@@ -217,13 +218,13 @@ module Aws::IAM
|
|
217
218
|
# characters consisting of the following:
|
218
219
|
#
|
219
220
|
# * Any printable ASCII character ranging from the space character
|
220
|
-
# (
|
221
|
+
# (`\u0020`) through the end of the ASCII character range
|
221
222
|
#
|
222
223
|
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
223
|
-
# character set (through
|
224
|
+
# character set (through `\u00FF`)
|
224
225
|
#
|
225
|
-
# * The special characters tab (
|
226
|
-
# carriage return (
|
226
|
+
# * The special characters tab (`\u0009`), line feed (`\u000A`), and
|
227
|
+
# carriage return (`\u000D`)
|
227
228
|
#
|
228
229
|
#
|
229
230
|
#
|
@@ -21,6 +21,7 @@ module Aws::IAM
|
|
21
21
|
@user_name = extract_user_name(args, options)
|
22
22
|
@data = options.delete(:data)
|
23
23
|
@client = options.delete(:client) || Client.new(options)
|
24
|
+
@waiter_block_warned = false
|
24
25
|
end
|
25
26
|
|
26
27
|
# @!group Read-Only Attributes
|
@@ -187,12 +188,12 @@ module Aws::IAM
|
|
187
188
|
#
|
188
189
|
# The [regex pattern][1] that is used to validate this parameter is a
|
189
190
|
# string of characters. That string can include almost any printable
|
190
|
-
# ASCII character from the space (
|
191
|
-
# character range (
|
192
|
-
# line feed (
|
193
|
-
# these characters are valid in a password. However, many tools, such
|
194
|
-
# the AWS Management Console, might restrict the ability to type
|
195
|
-
# characters because they have special meaning within that tool.
|
191
|
+
# ASCII character from the space (`\u0020`) through the end of the ASCII
|
192
|
+
# character range (`\u00FF`). You can also include the tab (`\u0009`),
|
193
|
+
# line feed (`\u000A`), and carriage return (`\u000D`) characters. Any
|
194
|
+
# of these characters are valid in a password. However, many tools, such
|
195
|
+
# as the AWS Management Console, might restrict the ability to type
|
196
|
+
# certain characters because they have special meaning within that tool.
|
196
197
|
#
|
197
198
|
#
|
198
199
|
#
|
@@ -236,13 +237,13 @@ module Aws::IAM
|
|
236
237
|
# characters consisting of the following:
|
237
238
|
#
|
238
239
|
# * Any printable ASCII character ranging from the space character
|
239
|
-
# (
|
240
|
+
# (`\u0020`) through the end of the ASCII character range
|
240
241
|
#
|
241
242
|
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
242
|
-
# character set (through
|
243
|
+
# character set (through `\u00FF`)
|
243
244
|
#
|
244
|
-
# * The special characters tab (
|
245
|
-
# carriage return (
|
245
|
+
# * The special characters tab (`\u0009`), line feed (`\u000A`), and
|
246
|
+
# carriage return (`\u000D`)
|
246
247
|
#
|
247
248
|
# However, the format can be further restricted by the account
|
248
249
|
# administrator by setting a password policy on the AWS account. For
|
data/lib/aws-sdk-iam/policy.rb
CHANGED
@@ -21,6 +21,7 @@ module Aws::IAM
|
|
21
21
|
@arn = extract_arn(args, options)
|
22
22
|
@data = options.delete(:data)
|
23
23
|
@client = options.delete(:client) || Client.new(options)
|
24
|
+
@waiter_block_warned = false
|
24
25
|
end
|
25
26
|
|
26
27
|
# @!group Read-Only Attributes
|
@@ -359,13 +360,13 @@ module Aws::IAM
|
|
359
360
|
# characters consisting of the following:
|
360
361
|
#
|
361
362
|
# * Any printable ASCII character ranging from the space character
|
362
|
-
# (
|
363
|
+
# (`\u0020`) through the end of the ASCII character range
|
363
364
|
#
|
364
365
|
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
365
|
-
# character set (through
|
366
|
+
# character set (through `\u00FF`)
|
366
367
|
#
|
367
|
-
# * The special characters tab (
|
368
|
-
# carriage return (
|
368
|
+
# * The special characters tab (`\u0009`), line feed (`\u000A`), and
|
369
|
+
# carriage return (`\u000D`)
|
369
370
|
#
|
370
371
|
#
|
371
372
|
#
|
@@ -498,8 +499,8 @@ module Aws::IAM
|
|
498
499
|
# This parameter allows (through its [regex pattern][1]) a string of
|
499
500
|
# characters consisting of either a forward slash (/) by itself or a
|
500
501
|
# string that must begin and end with forward slashes. In addition, it
|
501
|
-
# can contain any ASCII character from the ! (
|
502
|
-
# character (
|
502
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
503
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
503
504
|
# and upper and lowercased letters.
|
504
505
|
#
|
505
506
|
#
|
@@ -553,8 +554,8 @@ module Aws::IAM
|
|
553
554
|
# This parameter allows (through its [regex pattern][1]) a string of
|
554
555
|
# characters consisting of either a forward slash (/) by itself or a
|
555
556
|
# string that must begin and end with forward slashes. In addition, it
|
556
|
-
# can contain any ASCII character from the ! (
|
557
|
-
# character (
|
557
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
558
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
558
559
|
# and upper and lowercased letters.
|
559
560
|
#
|
560
561
|
#
|
@@ -608,8 +609,8 @@ module Aws::IAM
|
|
608
609
|
# This parameter allows (through its [regex pattern][1]) a string of
|
609
610
|
# characters consisting of either a forward slash (/) by itself or a
|
610
611
|
# string that must begin and end with forward slashes. In addition, it
|
611
|
-
# can contain any ASCII character from the ! (
|
612
|
-
# character (
|
612
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
613
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
613
614
|
# and upper and lowercased letters.
|
614
615
|
#
|
615
616
|
#
|
data/lib/aws-sdk-iam/resource.rb
CHANGED
@@ -36,12 +36,12 @@ module Aws::IAM
|
|
36
36
|
#
|
37
37
|
# The [regex pattern][1] that is used to validate this parameter is a
|
38
38
|
# string of characters. That string can include almost any printable
|
39
|
-
# ASCII character from the space (
|
40
|
-
# character range (
|
41
|
-
# line feed (
|
42
|
-
# these characters are valid in a password. However, many tools, such
|
43
|
-
# the AWS Management Console, might restrict the ability to type
|
44
|
-
# characters because they have special meaning within that tool.
|
39
|
+
# ASCII character from the space (`\u0020`) through the end of the ASCII
|
40
|
+
# character range (`\u00FF`). You can also include the tab (`\u0009`),
|
41
|
+
# line feed (`\u000A`), and carriage return (`\u000D`) characters. Any
|
42
|
+
# of these characters are valid in a password. However, many tools, such
|
43
|
+
# as the AWS Management Console, might restrict the ability to type
|
44
|
+
# certain characters because they have special meaning within that tool.
|
45
45
|
#
|
46
46
|
#
|
47
47
|
#
|
@@ -182,8 +182,8 @@ module Aws::IAM
|
|
182
182
|
# This parameter allows (through its [regex pattern][2]) a string of
|
183
183
|
# characters consisting of either a forward slash (/) by itself or a
|
184
184
|
# string that must begin and end with forward slashes. In addition, it
|
185
|
-
# can contain any ASCII character from the ! (
|
186
|
-
# character (
|
185
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
186
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
187
187
|
# and upper and lowercased letters.
|
188
188
|
#
|
189
189
|
#
|
@@ -235,8 +235,8 @@ module Aws::IAM
|
|
235
235
|
# This parameter allows (through its [regex pattern][2]) a string of
|
236
236
|
# characters consisting of either a forward slash (/) by itself or a
|
237
237
|
# string that must begin and end with forward slashes. In addition, it
|
238
|
-
# can contain any ASCII character from the ! (
|
239
|
-
# character (
|
238
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
239
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
240
240
|
# and upper and lowercased letters.
|
241
241
|
#
|
242
242
|
#
|
@@ -280,8 +280,8 @@ module Aws::IAM
|
|
280
280
|
# This parameter allows (through its [regex pattern][2]) a string of
|
281
281
|
# characters consisting of either a forward slash (/) by itself or a
|
282
282
|
# string that must begin and end with forward slashes. In addition, it
|
283
|
-
# can contain any ASCII character from the ! (
|
284
|
-
# character (
|
283
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
284
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
285
285
|
# and upper and lowercased letters.
|
286
286
|
#
|
287
287
|
#
|
@@ -301,13 +301,13 @@ module Aws::IAM
|
|
301
301
|
# characters consisting of the following:
|
302
302
|
#
|
303
303
|
# * Any printable ASCII character ranging from the space character
|
304
|
-
# (
|
304
|
+
# (`\u0020`) through the end of the ASCII character range
|
305
305
|
#
|
306
306
|
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
307
|
-
# character set (through
|
307
|
+
# character set (through `\u00FF`)
|
308
308
|
#
|
309
|
-
# * The special characters tab (
|
310
|
-
# carriage return (
|
309
|
+
# * The special characters tab (`\u0009`), line feed (`\u000A`), and
|
310
|
+
# carriage return (`\u000D`)
|
311
311
|
#
|
312
312
|
#
|
313
313
|
#
|
@@ -357,8 +357,8 @@ module Aws::IAM
|
|
357
357
|
# This parameter allows (through its [regex pattern][2]) a string of
|
358
358
|
# characters consisting of either a forward slash (/) by itself or a
|
359
359
|
# string that must begin and end with forward slashes. In addition, it
|
360
|
-
# can contain any ASCII character from the ! (
|
361
|
-
# character (
|
360
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
361
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
362
362
|
# and upper and lowercased letters.
|
363
363
|
#
|
364
364
|
#
|
@@ -385,13 +385,13 @@ module Aws::IAM
|
|
385
385
|
# characters consisting of the following:
|
386
386
|
#
|
387
387
|
# * Any printable ASCII character ranging from the space character
|
388
|
-
# (
|
388
|
+
# (`\u0020`) through the end of the ASCII character range
|
389
389
|
#
|
390
390
|
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
391
|
-
# character set (through
|
391
|
+
# character set (through `\u00FF`)
|
392
392
|
#
|
393
|
-
# * The special characters tab (
|
394
|
-
# carriage return (
|
393
|
+
# * The special characters tab (`\u0009`), line feed (`\u000A`), and
|
394
|
+
# carriage return (`\u000D`)
|
395
395
|
#
|
396
396
|
# Upon success, the response includes the same trust policy in JSON
|
397
397
|
# format.
|
@@ -508,8 +508,8 @@ module Aws::IAM
|
|
508
508
|
# slash (/). This parameter allows (through its [regex pattern][2]) a
|
509
509
|
# string of characters consisting of either a forward slash (/) by
|
510
510
|
# itself or a string that must begin and end with forward slashes. In
|
511
|
-
# addition, it can contain any ASCII character from the ! (
|
512
|
-
# through the DEL character (
|
511
|
+
# addition, it can contain any ASCII character from the ! (`\u0021`)
|
512
|
+
# through the DEL character (`\u007F`), including most punctuation
|
513
513
|
# characters, digits, and upper and lowercased letters.
|
514
514
|
#
|
515
515
|
# <note markdown="1"> If you are uploading a server certificate specifically for use with
|
@@ -542,13 +542,13 @@ module Aws::IAM
|
|
542
542
|
# characters consisting of the following:
|
543
543
|
#
|
544
544
|
# * Any printable ASCII character ranging from the space character
|
545
|
-
# (
|
545
|
+
# (`\u0020`) through the end of the ASCII character range
|
546
546
|
#
|
547
547
|
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
548
|
-
# character set (through
|
548
|
+
# character set (through `\u00FF`)
|
549
549
|
#
|
550
|
-
# * The special characters tab (
|
551
|
-
# carriage return (
|
550
|
+
# * The special characters tab (`\u0009`), line feed (`\u000A`), and
|
551
|
+
# carriage return (`\u000D`)
|
552
552
|
#
|
553
553
|
#
|
554
554
|
#
|
@@ -560,13 +560,13 @@ module Aws::IAM
|
|
560
560
|
# characters consisting of the following:
|
561
561
|
#
|
562
562
|
# * Any printable ASCII character ranging from the space character
|
563
|
-
# (
|
563
|
+
# (`\u0020`) through the end of the ASCII character range
|
564
564
|
#
|
565
565
|
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
566
|
-
# character set (through
|
566
|
+
# character set (through `\u00FF`)
|
567
567
|
#
|
568
|
-
# * The special characters tab (
|
569
|
-
# carriage return (
|
568
|
+
# * The special characters tab (`\u0009`), line feed (`\u000A`), and
|
569
|
+
# carriage return (`\u000D`)
|
570
570
|
#
|
571
571
|
#
|
572
572
|
#
|
@@ -579,13 +579,13 @@ module Aws::IAM
|
|
579
579
|
# characters consisting of the following:
|
580
580
|
#
|
581
581
|
# * Any printable ASCII character ranging from the space character
|
582
|
-
# (
|
582
|
+
# (`\u0020`) through the end of the ASCII character range
|
583
583
|
#
|
584
584
|
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
585
|
-
# character set (through
|
585
|
+
# character set (through `\u00FF`)
|
586
586
|
#
|
587
|
-
# * The special characters tab (
|
588
|
-
# carriage return (
|
587
|
+
# * The special characters tab (`\u0009`), line feed (`\u000A`), and
|
588
|
+
# carriage return (`\u000D`)
|
589
589
|
#
|
590
590
|
#
|
591
591
|
#
|
@@ -624,13 +624,13 @@ module Aws::IAM
|
|
624
624
|
# characters consisting of the following:
|
625
625
|
#
|
626
626
|
# * Any printable ASCII character ranging from the space character
|
627
|
-
# (
|
627
|
+
# (`\u0020`) through the end of the ASCII character range
|
628
628
|
#
|
629
629
|
# * The printable characters in the Basic Latin and Latin-1 Supplement
|
630
|
-
# character set (through
|
630
|
+
# character set (through `\u00FF`)
|
631
631
|
#
|
632
|
-
# * The special characters tab (
|
633
|
-
# carriage return (
|
632
|
+
# * The special characters tab (`\u0009`), line feed (`\u000A`), and
|
633
|
+
# carriage return (`\u000D`)
|
634
634
|
#
|
635
635
|
#
|
636
636
|
#
|
@@ -669,8 +669,8 @@ module Aws::IAM
|
|
669
669
|
# This parameter allows (through its [regex pattern][2]) a string of
|
670
670
|
# characters consisting of either a forward slash (/) by itself or a
|
671
671
|
# string that must begin and end with forward slashes. In addition, it
|
672
|
-
# can contain any ASCII character from the ! (
|
673
|
-
# character (
|
672
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
673
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
674
674
|
# and upper and lowercased letters.
|
675
675
|
#
|
676
676
|
#
|
@@ -728,8 +728,8 @@ module Aws::IAM
|
|
728
728
|
# This parameter allows (through its [regex pattern][2]) a string of
|
729
729
|
# characters consisting of either a forward slash (/) by itself or a
|
730
730
|
# string that must begin and end with forward slashes. In addition, it
|
731
|
-
# can contain any ASCII character from the ! (
|
732
|
-
# character (
|
731
|
+
# can contain any ASCII character from the ! (`\u0021`) through the DEL
|
732
|
+
# character (`\u007F`), including most punctuation characters, digits,
|
733
733
|
# and upper and lowercased letters.
|
734
734
|
#
|
735
735
|
#
|
@@ -800,7 +800,7 @@ module Aws::IAM
|
|
800
800
|
# [regex pattern][1]) a string of characters consisting of either a
|
801
801
|
# forward slash (/) by itself or a string that must begin and end with
|
802
802
|
# forward slashes. In addition, it can contain any ASCII character from
|
803
|
-
# the ! (
|
803
|
+
# the ! (`\u0021`) through the DEL character (`\u007F`), including most
|
804
804
|
# punctuation characters, digits, and upper and lowercased letters.
|
805
805
|
#
|
806
806
|
#
|
@@ -850,7 +850,7 @@ module Aws::IAM
|
|
850
850
|
# (through its [regex pattern][1]) a string of characters consisting of
|
851
851
|
# either a forward slash (/) by itself or a string that must begin and
|
852
852
|
# end with forward slashes. In addition, it can contain any ASCII
|
853
|
-
# character from the ! (
|
853
|
+
# character from the ! (`\u0021`) through the DEL character (`\u007F`),
|
854
854
|
# including most punctuation characters, digits, and upper and
|
855
855
|
# lowercased letters.
|
856
856
|
#
|
@@ -907,8 +907,8 @@ module Aws::IAM
|
|
907
907
|
# policies. This parameter allows (through its [regex pattern][1]) a
|
908
908
|
# string of characters consisting of either a forward slash (/) by
|
909
909
|
# itself or a string that must begin and end with forward slashes. In
|
910
|
-
# addition, it can contain any ASCII character from the ! (
|
911
|
-
# through the DEL character (
|
910
|
+
# addition, it can contain any ASCII character from the ! (`\u0021`)
|
911
|
+
# through the DEL character (`\u007F`), including most punctuation
|
912
912
|
# characters, digits, and upper and lowercased letters.
|
913
913
|
#
|
914
914
|
#
|
@@ -977,7 +977,7 @@ module Aws::IAM
|
|
977
977
|
# [regex pattern][1]) a string of characters consisting of either a
|
978
978
|
# forward slash (/) by itself or a string that must begin and end with
|
979
979
|
# forward slashes. In addition, it can contain any ASCII character from
|
980
|
-
# the ! (
|
980
|
+
# the ! (`\u0021`) through the DEL character (`\u007F`), including most
|
981
981
|
# punctuation characters, digits, and upper and lowercased letters.
|
982
982
|
#
|
983
983
|
#
|
@@ -1056,7 +1056,7 @@ module Aws::IAM
|
|
1056
1056
|
# (through its [regex pattern][1]) a string of characters consisting of
|
1057
1057
|
# either a forward slash (/) by itself or a string that must begin and
|
1058
1058
|
# end with forward slashes. In addition, it can contain any ASCII
|
1059
|
-
# character from the ! (
|
1059
|
+
# character from the ! (`\u0021`) through the DEL character (`\u007F`),
|
1060
1060
|
# including most punctuation characters, digits, and upper and
|
1061
1061
|
# lowercased letters.
|
1062
1062
|
#
|
@@ -1106,7 +1106,7 @@ module Aws::IAM
|
|
1106
1106
|
# [regex pattern][1]) a string of characters consisting of either a
|
1107
1107
|
# forward slash (/) by itself or a string that must begin and end with
|
1108
1108
|
# forward slashes. In addition, it can contain any ASCII character from
|
1109
|
-
# the ! (
|
1109
|
+
# the ! (`\u0021`) through the DEL character (`\u007F`), including most
|
1110
1110
|
# punctuation characters, digits, and upper and lowercased letters.
|
1111
1111
|
#
|
1112
1112
|
#
|