aws-sdk-iam 1.32.0 → 1.33.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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"))
@@ -16,6 +16,7 @@ module Aws::IAM
16
16
  options = Hash === args.last ? args.pop.dup : {}
17
17
  @data = options.delete(:data)
18
18
  @client = options.delete(:client) || Client.new(options)
19
+ @waiter_block_warned = false
19
20
  end
20
21
 
21
22
  # @!group Read-Only Attributes
@@ -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 ! (\\u0021) through the DEL
275
- # character (\\u007F), including most punctuation characters, digits,
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
- # (\\u0020) through the end of the ASCII character range
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 \\u00FF)
327
+ # character set (through `\u00FF`)
327
328
  #
328
- # * The special characters tab (\\u0009), line feed (\\u000A), and
329
- # carriage return (\\u000D)
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 ! (\\u0021) through the DEL
417
- # character (\\u007F), including most punctuation characters, digits,
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 ! (\\u0021) through the DEL
457
- # character (\\u007F), including most punctuation characters, digits,
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
- # (\\u0020) through the end of the ASCII character range
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 \\u00FF)
224
+ # character set (through `\u00FF`)
224
225
  #
225
- # * The special characters tab (\\u0009), line feed (\\u000A), and
226
- # carriage return (\\u000D)
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
  @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
@@ -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 (\\u0020) through the end of the ASCII
191
- # character range (\\u00FF). You can also include the tab (\\u0009),
192
- # line feed (\\u000A), and carriage return (\\u000D) characters. Any of
193
- # these characters are valid in a password. However, many tools, such as
194
- # the AWS Management Console, might restrict the ability to type certain
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
- # (\\u0020) through the end of the ASCII character range
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 \\u00FF)
243
+ # character set (through `\u00FF`)
243
244
  #
244
- # * The special characters tab (\\u0009), line feed (\\u000A), and
245
- # carriage return (\\u000D)
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
@@ -24,6 +24,7 @@ module Aws::IAM
24
24
  @serial_number = extract_serial_number(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
@@ -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
- # (\\u0020) through the end of the ASCII character range
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 \\u00FF)
366
+ # character set (through `\u00FF`)
366
367
  #
367
- # * The special characters tab (\\u0009), line feed (\\u000A), and
368
- # carriage return (\\u000D)
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 ! (\\u0021) through the DEL
502
- # character (\\u007F), including most punctuation characters, digits,
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 ! (\\u0021) through the DEL
557
- # character (\\u007F), including most punctuation characters, digits,
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 ! (\\u0021) through the DEL
612
- # character (\\u007F), including most punctuation characters, digits,
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
  #
@@ -24,6 +24,7 @@ module Aws::IAM
24
24
  @version_id = extract_version_id(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
@@ -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 (\\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 of
42
- # these characters are valid in a password. However, many tools, such as
43
- # the AWS Management Console, might restrict the ability to type certain
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 ! (\\u0021) through the DEL
186
- # character (\\u007F), including most punctuation characters, digits,
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 ! (\\u0021) through the DEL
239
- # character (\\u007F), including most punctuation characters, digits,
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 ! (\\u0021) through the DEL
284
- # character (\\u007F), including most punctuation characters, digits,
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
- # (\\u0020) through the end of the ASCII character range
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 \\u00FF)
307
+ # character set (through `\u00FF`)
308
308
  #
309
- # * The special characters tab (\\u0009), line feed (\\u000A), and
310
- # carriage return (\\u000D)
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 ! (\\u0021) through the DEL
361
- # character (\\u007F), including most punctuation characters, digits,
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
- # (\\u0020) through the end of the ASCII character range
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 \\u00FF)
391
+ # character set (through `\u00FF`)
392
392
  #
393
- # * The special characters tab (\\u0009), line feed (\\u000A), and
394
- # carriage return (\\u000D)
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 ! (\\u0021)
512
- # through the DEL character (\\u007F), including most punctuation
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
- # (\\u0020) through the end of the ASCII character range
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 \\u00FF)
548
+ # character set (through `\u00FF`)
549
549
  #
550
- # * The special characters tab (\\u0009), line feed (\\u000A), and
551
- # carriage return (\\u000D)
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
- # (\\u0020) through the end of the ASCII character range
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 \\u00FF)
566
+ # character set (through `\u00FF`)
567
567
  #
568
- # * The special characters tab (\\u0009), line feed (\\u000A), and
569
- # carriage return (\\u000D)
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
- # (\\u0020) through the end of the ASCII character range
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 \\u00FF)
585
+ # character set (through `\u00FF`)
586
586
  #
587
- # * The special characters tab (\\u0009), line feed (\\u000A), and
588
- # carriage return (\\u000D)
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
- # (\\u0020) through the end of the ASCII character range
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 \\u00FF)
630
+ # character set (through `\u00FF`)
631
631
  #
632
- # * The special characters tab (\\u0009), line feed (\\u000A), and
633
- # carriage return (\\u000D)
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 ! (\\u0021) through the DEL
673
- # character (\\u007F), including most punctuation characters, digits,
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 ! (\\u0021) through the DEL
732
- # character (\\u007F), including most punctuation characters, digits,
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 ! (\\u0021) through the DEL character (\\u007F), including most
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 ! (\\u0021) through the DEL character (\\u007F),
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 ! (\\u0021)
911
- # through the DEL character (\\u007F), including most punctuation
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 ! (\\u0021) through the DEL character (\\u007F), including most
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 ! (\\u0021) through the DEL character (\\u007F),
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 ! (\\u0021) through the DEL character (\\u007F), including most
1109
+ # the ! (`\u0021`) through the DEL character (`\u007F`), including most
1110
1110
  # punctuation characters, digits, and upper and lowercased letters.
1111
1111
  #
1112
1112
  #