aws-sdk-core 2.1.3 → 2.1.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1267,7 +1267,8 @@
1267
1267
  "instanceIdentityDocument":{"shape":"String"},
1268
1268
  "instanceIdentityDocumentSignature":{"shape":"String"},
1269
1269
  "totalResources":{"shape":"Resources"},
1270
- "versionInfo":{"shape":"VersionInfo"}
1270
+ "versionInfo":{"shape":"VersionInfo"},
1271
+ "containerInstanceArn":{"shape":"String"}
1271
1272
  }
1272
1273
  },
1273
1274
  "RegisterContainerInstanceResponse":{
@@ -23,6 +23,18 @@
23
23
  "resultWrapper":"DeleteIdentityResult"
24
24
  }
25
25
  },
26
+ "DeleteIdentityPolicy":{
27
+ "name":"DeleteIdentityPolicy",
28
+ "http":{
29
+ "method":"POST",
30
+ "requestUri":"/"
31
+ },
32
+ "input":{"shape":"DeleteIdentityPolicyRequest"},
33
+ "output":{
34
+ "shape":"DeleteIdentityPolicyResponse",
35
+ "resultWrapper":"DeleteIdentityPolicyResult"
36
+ }
37
+ },
26
38
  "DeleteVerifiedEmailAddress":{
27
39
  "name":"DeleteVerifiedEmailAddress",
28
40
  "http":{
@@ -55,6 +67,18 @@
55
67
  "resultWrapper":"GetIdentityNotificationAttributesResult"
56
68
  }
57
69
  },
70
+ "GetIdentityPolicies":{
71
+ "name":"GetIdentityPolicies",
72
+ "http":{
73
+ "method":"POST",
74
+ "requestUri":"/"
75
+ },
76
+ "input":{"shape":"GetIdentityPoliciesRequest"},
77
+ "output":{
78
+ "shape":"GetIdentityPoliciesResponse",
79
+ "resultWrapper":"GetIdentityPoliciesResult"
80
+ }
81
+ },
58
82
  "GetIdentityVerificationAttributes":{
59
83
  "name":"GetIdentityVerificationAttributes",
60
84
  "http":{
@@ -101,6 +125,18 @@
101
125
  "resultWrapper":"ListIdentitiesResult"
102
126
  }
103
127
  },
128
+ "ListIdentityPolicies":{
129
+ "name":"ListIdentityPolicies",
130
+ "http":{
131
+ "method":"POST",
132
+ "requestUri":"/"
133
+ },
134
+ "input":{"shape":"ListIdentityPoliciesRequest"},
135
+ "output":{
136
+ "shape":"ListIdentityPoliciesResponse",
137
+ "resultWrapper":"ListIdentityPoliciesResult"
138
+ }
139
+ },
104
140
  "ListVerifiedEmailAddresses":{
105
141
  "name":"ListVerifiedEmailAddresses",
106
142
  "http":{
@@ -112,6 +148,29 @@
112
148
  "resultWrapper":"ListVerifiedEmailAddressesResult"
113
149
  }
114
150
  },
151
+ "PutIdentityPolicy":{
152
+ "name":"PutIdentityPolicy",
153
+ "http":{
154
+ "method":"POST",
155
+ "requestUri":"/"
156
+ },
157
+ "input":{"shape":"PutIdentityPolicyRequest"},
158
+ "output":{
159
+ "shape":"PutIdentityPolicyResponse",
160
+ "resultWrapper":"PutIdentityPolicyResult"
161
+ },
162
+ "errors":[
163
+ {
164
+ "shape":"InvalidPolicyException",
165
+ "error":{
166
+ "code":"InvalidPolicy",
167
+ "httpStatusCode":400,
168
+ "senderFault":true
169
+ },
170
+ "exception":true
171
+ }
172
+ ]
173
+ },
115
174
  "SendEmail":{
116
175
  "name":"SendEmail",
117
176
  "http":{
@@ -245,6 +304,7 @@
245
304
  "type":"list",
246
305
  "member":{"shape":"Address"}
247
306
  },
307
+ "AmazonResourceName":{"type":"string"},
248
308
  "Body":{
249
309
  "type":"structure",
250
310
  "members":{
@@ -262,6 +322,22 @@
262
322
  }
263
323
  },
264
324
  "Counter":{"type":"long"},
325
+ "DeleteIdentityPolicyRequest":{
326
+ "type":"structure",
327
+ "required":[
328
+ "Identity",
329
+ "PolicyName"
330
+ ],
331
+ "members":{
332
+ "Identity":{"shape":"Identity"},
333
+ "PolicyName":{"shape":"PolicyName"}
334
+ }
335
+ },
336
+ "DeleteIdentityPolicyResponse":{
337
+ "type":"structure",
338
+ "members":{
339
+ }
340
+ },
265
341
  "DeleteIdentityRequest":{
266
342
  "type":"structure",
267
343
  "required":["Identity"],
@@ -324,6 +400,24 @@
324
400
  "NotificationAttributes":{"shape":"NotificationAttributes"}
325
401
  }
326
402
  },
403
+ "GetIdentityPoliciesRequest":{
404
+ "type":"structure",
405
+ "required":[
406
+ "Identity",
407
+ "PolicyNames"
408
+ ],
409
+ "members":{
410
+ "Identity":{"shape":"Identity"},
411
+ "PolicyNames":{"shape":"PolicyNameList"}
412
+ }
413
+ },
414
+ "GetIdentityPoliciesResponse":{
415
+ "type":"structure",
416
+ "required":["Policies"],
417
+ "members":{
418
+ "Policies":{"shape":"PolicyMap"}
419
+ }
420
+ },
327
421
  "GetIdentityVerificationAttributesRequest":{
328
422
  "type":"structure",
329
423
  "required":["Identities"],
@@ -399,6 +493,17 @@
399
493
  "VerificationToken":{"shape":"VerificationToken"}
400
494
  }
401
495
  },
496
+ "InvalidPolicyException":{
497
+ "type":"structure",
498
+ "members":{
499
+ },
500
+ "error":{
501
+ "code":"InvalidPolicy",
502
+ "httpStatusCode":400,
503
+ "senderFault":true
504
+ },
505
+ "exception":true
506
+ },
402
507
  "ListIdentitiesRequest":{
403
508
  "type":"structure",
404
509
  "members":{
@@ -415,6 +520,20 @@
415
520
  "NextToken":{"shape":"NextToken"}
416
521
  }
417
522
  },
523
+ "ListIdentityPoliciesRequest":{
524
+ "type":"structure",
525
+ "required":["Identity"],
526
+ "members":{
527
+ "Identity":{"shape":"Identity"}
528
+ }
529
+ },
530
+ "ListIdentityPoliciesResponse":{
531
+ "type":"structure",
532
+ "required":["PolicyNames"],
533
+ "members":{
534
+ "PolicyNames":{"shape":"PolicyNameList"}
535
+ }
536
+ },
418
537
  "ListVerifiedEmailAddressesResponse":{
419
538
  "type":"structure",
420
539
  "members":{
@@ -463,6 +582,43 @@
463
582
  "Delivery"
464
583
  ]
465
584
  },
585
+ "Policy":{
586
+ "type":"string",
587
+ "min":1
588
+ },
589
+ "PolicyMap":{
590
+ "type":"map",
591
+ "key":{"shape":"PolicyName"},
592
+ "value":{"shape":"Policy"}
593
+ },
594
+ "PolicyName":{
595
+ "type":"string",
596
+ "min":1,
597
+ "max":64,
598
+ "pattern":"[^\\\\/\\?\\*\\s]+"
599
+ },
600
+ "PolicyNameList":{
601
+ "type":"list",
602
+ "member":{"shape":"PolicyName"}
603
+ },
604
+ "PutIdentityPolicyRequest":{
605
+ "type":"structure",
606
+ "required":[
607
+ "Identity",
608
+ "PolicyName",
609
+ "Policy"
610
+ ],
611
+ "members":{
612
+ "Identity":{"shape":"Identity"},
613
+ "PolicyName":{"shape":"PolicyName"},
614
+ "Policy":{"shape":"Policy"}
615
+ }
616
+ },
617
+ "PutIdentityPolicyResponse":{
618
+ "type":"structure",
619
+ "members":{
620
+ }
621
+ },
466
622
  "RawMessage":{
467
623
  "type":"structure",
468
624
  "required":["Data"],
@@ -497,7 +653,9 @@
497
653
  "Destination":{"shape":"Destination"},
498
654
  "Message":{"shape":"Message"},
499
655
  "ReplyToAddresses":{"shape":"AddressList"},
500
- "ReturnPath":{"shape":"Address"}
656
+ "ReturnPath":{"shape":"Address"},
657
+ "SourceArn":{"shape":"AmazonResourceName"},
658
+ "ReturnPathArn":{"shape":"AmazonResourceName"}
501
659
  }
502
660
  },
503
661
  "SendEmailResponse":{
@@ -513,7 +671,10 @@
513
671
  "members":{
514
672
  "Source":{"shape":"Address"},
515
673
  "Destinations":{"shape":"AddressList"},
516
- "RawMessage":{"shape":"RawMessage"}
674
+ "RawMessage":{"shape":"RawMessage"},
675
+ "FromArn":{"shape":"AmazonResourceName"},
676
+ "SourceArn":{"shape":"AmazonResourceName"},
677
+ "ReturnPathArn":{"shape":"AmazonResourceName"}
517
678
  }
518
679
  },
519
680
  "SendRawEmailResponse":{
@@ -1503,6 +1503,25 @@
1503
1503
  }
1504
1504
  ]
1505
1505
  },
1506
+ "DeleteSSHPublicKey":{
1507
+ "name":"DeleteSSHPublicKey",
1508
+ "http":{
1509
+ "method":"POST",
1510
+ "requestUri":"/"
1511
+ },
1512
+ "input":{"shape":"DeleteSSHPublicKeyRequest"},
1513
+ "errors":[
1514
+ {
1515
+ "shape":"NoSuchEntityException",
1516
+ "error":{
1517
+ "code":"NoSuchEntity",
1518
+ "httpStatusCode":404,
1519
+ "senderFault":true
1520
+ },
1521
+ "exception":true
1522
+ }
1523
+ ]
1524
+ },
1506
1525
  "DeleteServerCertificate":{
1507
1526
  "name":"DeleteServerCertificate",
1508
1527
  "http":{
@@ -2428,6 +2447,38 @@
2428
2447
  }
2429
2448
  ]
2430
2449
  },
2450
+ "GetSSHPublicKey":{
2451
+ "name":"GetSSHPublicKey",
2452
+ "http":{
2453
+ "method":"POST",
2454
+ "requestUri":"/"
2455
+ },
2456
+ "input":{"shape":"GetSSHPublicKeyRequest"},
2457
+ "output":{
2458
+ "shape":"GetSSHPublicKeyResponse",
2459
+ "resultWrapper":"GetSSHPublicKeyResult"
2460
+ },
2461
+ "errors":[
2462
+ {
2463
+ "shape":"NoSuchEntityException",
2464
+ "error":{
2465
+ "code":"NoSuchEntity",
2466
+ "httpStatusCode":404,
2467
+ "senderFault":true
2468
+ },
2469
+ "exception":true
2470
+ },
2471
+ {
2472
+ "shape":"UnrecognizedPublicKeyEncodingException",
2473
+ "error":{
2474
+ "code":"UnrecognizedPublicKeyEncoding",
2475
+ "httpStatusCode":400,
2476
+ "senderFault":true
2477
+ },
2478
+ "exception":true
2479
+ }
2480
+ ]
2481
+ },
2431
2482
  "GetServerCertificate":{
2432
2483
  "name":"GetServerCertificate",
2433
2484
  "http":{
@@ -3061,6 +3112,29 @@
3061
3112
  }
3062
3113
  ]
3063
3114
  },
3115
+ "ListSSHPublicKeys":{
3116
+ "name":"ListSSHPublicKeys",
3117
+ "http":{
3118
+ "method":"POST",
3119
+ "requestUri":"/"
3120
+ },
3121
+ "input":{"shape":"ListSSHPublicKeysRequest"},
3122
+ "output":{
3123
+ "shape":"ListSSHPublicKeysResponse",
3124
+ "resultWrapper":"ListSSHPublicKeysResult"
3125
+ },
3126
+ "errors":[
3127
+ {
3128
+ "shape":"NoSuchEntityException",
3129
+ "error":{
3130
+ "code":"NoSuchEntity",
3131
+ "httpStatusCode":404,
3132
+ "senderFault":true
3133
+ },
3134
+ "exception":true
3135
+ }
3136
+ ]
3137
+ },
3064
3138
  "ListServerCertificates":{
3065
3139
  "name":"ListServerCertificates",
3066
3140
  "http":{
@@ -3822,6 +3896,25 @@
3822
3896
  }
3823
3897
  ]
3824
3898
  },
3899
+ "UpdateSSHPublicKey":{
3900
+ "name":"UpdateSSHPublicKey",
3901
+ "http":{
3902
+ "method":"POST",
3903
+ "requestUri":"/"
3904
+ },
3905
+ "input":{"shape":"UpdateSSHPublicKeyRequest"},
3906
+ "errors":[
3907
+ {
3908
+ "shape":"NoSuchEntityException",
3909
+ "error":{
3910
+ "code":"NoSuchEntity",
3911
+ "httpStatusCode":404,
3912
+ "senderFault":true
3913
+ },
3914
+ "exception":true
3915
+ }
3916
+ ]
3917
+ },
3825
3918
  "UpdateServerCertificate":{
3826
3919
  "name":"UpdateServerCertificate",
3827
3920
  "http":{
@@ -3957,6 +4050,65 @@
3957
4050
  }
3958
4051
  ]
3959
4052
  },
4053
+ "UploadSSHPublicKey":{
4054
+ "name":"UploadSSHPublicKey",
4055
+ "http":{
4056
+ "method":"POST",
4057
+ "requestUri":"/"
4058
+ },
4059
+ "input":{"shape":"UploadSSHPublicKeyRequest"},
4060
+ "output":{
4061
+ "shape":"UploadSSHPublicKeyResponse",
4062
+ "resultWrapper":"UploadSSHPublicKeyResult"
4063
+ },
4064
+ "errors":[
4065
+ {
4066
+ "shape":"LimitExceededException",
4067
+ "error":{
4068
+ "code":"LimitExceeded",
4069
+ "httpStatusCode":409,
4070
+ "senderFault":true
4071
+ },
4072
+ "exception":true
4073
+ },
4074
+ {
4075
+ "shape":"NoSuchEntityException",
4076
+ "error":{
4077
+ "code":"NoSuchEntity",
4078
+ "httpStatusCode":404,
4079
+ "senderFault":true
4080
+ },
4081
+ "exception":true
4082
+ },
4083
+ {
4084
+ "shape":"InvalidPublicKeyException",
4085
+ "error":{
4086
+ "code":"InvalidPublicKey",
4087
+ "httpStatusCode":400,
4088
+ "senderFault":true
4089
+ },
4090
+ "exception":true
4091
+ },
4092
+ {
4093
+ "shape":"DuplicateSSHPublicKeyException",
4094
+ "error":{
4095
+ "code":"DuplicateSSHPublicKey",
4096
+ "httpStatusCode":400,
4097
+ "senderFault":true
4098
+ },
4099
+ "exception":true
4100
+ },
4101
+ {
4102
+ "shape":"UnrecognizedPublicKeyEncodingException",
4103
+ "error":{
4104
+ "code":"UnrecognizedPublicKeyEncoding",
4105
+ "httpStatusCode":400,
4106
+ "senderFault":true
4107
+ },
4108
+ "exception":true
4109
+ }
4110
+ ]
4111
+ },
3960
4112
  "UploadServerCertificate":{
3961
4113
  "name":"UploadServerCertificate",
3962
4114
  "http":{
@@ -4564,6 +4716,17 @@
4564
4716
  "SAMLProviderArn":{"shape":"arnType"}
4565
4717
  }
4566
4718
  },
4719
+ "DeleteSSHPublicKeyRequest":{
4720
+ "type":"structure",
4721
+ "required":[
4722
+ "UserName",
4723
+ "SSHPublicKeyId"
4724
+ ],
4725
+ "members":{
4726
+ "UserName":{"shape":"userNameType"},
4727
+ "SSHPublicKeyId":{"shape":"publicKeyIdType"}
4728
+ }
4729
+ },
4567
4730
  "DeleteServerCertificateRequest":{
4568
4731
  "type":"structure",
4569
4732
  "required":["ServerCertificateName"],
@@ -4649,6 +4812,18 @@
4649
4812
  },
4650
4813
  "exception":true
4651
4814
  },
4815
+ "DuplicateSSHPublicKeyException":{
4816
+ "type":"structure",
4817
+ "members":{
4818
+ "message":{"shape":"duplicateSSHPublicKeyMessage"}
4819
+ },
4820
+ "error":{
4821
+ "code":"DuplicateSSHPublicKey",
4822
+ "httpStatusCode":400,
4823
+ "senderFault":true
4824
+ },
4825
+ "exception":true
4826
+ },
4652
4827
  "EnableMFADeviceRequest":{
4653
4828
  "type":"structure",
4654
4829
  "required":[
@@ -4932,6 +5107,25 @@
4932
5107
  "ValidUntil":{"shape":"dateType"}
4933
5108
  }
4934
5109
  },
5110
+ "GetSSHPublicKeyRequest":{
5111
+ "type":"structure",
5112
+ "required":[
5113
+ "UserName",
5114
+ "SSHPublicKeyId",
5115
+ "Encoding"
5116
+ ],
5117
+ "members":{
5118
+ "UserName":{"shape":"userNameType"},
5119
+ "SSHPublicKeyId":{"shape":"publicKeyIdType"},
5120
+ "Encoding":{"shape":"encodingType"}
5121
+ }
5122
+ },
5123
+ "GetSSHPublicKeyResponse":{
5124
+ "type":"structure",
5125
+ "members":{
5126
+ "SSHPublicKey":{"shape":"SSHPublicKey"}
5127
+ }
5128
+ },
4935
5129
  "GetServerCertificateRequest":{
4936
5130
  "type":"structure",
4937
5131
  "required":["ServerCertificateName"],
@@ -5067,6 +5261,18 @@
5067
5261
  },
5068
5262
  "exception":true
5069
5263
  },
5264
+ "InvalidPublicKeyException":{
5265
+ "type":"structure",
5266
+ "members":{
5267
+ "message":{"shape":"invalidPublicKeyMessage"}
5268
+ },
5269
+ "error":{
5270
+ "code":"InvalidPublicKey",
5271
+ "httpStatusCode":400,
5272
+ "senderFault":true
5273
+ },
5274
+ "exception":true
5275
+ },
5070
5276
  "InvalidUserTypeException":{
5071
5277
  "type":"structure",
5072
5278
  "members":{
@@ -5408,6 +5614,22 @@
5408
5614
  "SAMLProviderList":{"shape":"SAMLProviderListType"}
5409
5615
  }
5410
5616
  },
5617
+ "ListSSHPublicKeysRequest":{
5618
+ "type":"structure",
5619
+ "members":{
5620
+ "UserName":{"shape":"userNameType"},
5621
+ "Marker":{"shape":"markerType"},
5622
+ "MaxItems":{"shape":"maxItemsType"}
5623
+ }
5624
+ },
5625
+ "ListSSHPublicKeysResponse":{
5626
+ "type":"structure",
5627
+ "members":{
5628
+ "SSHPublicKeys":{"shape":"SSHPublicKeyListType"},
5629
+ "IsTruncated":{"shape":"booleanType"},
5630
+ "Marker":{"shape":"markerType"}
5631
+ }
5632
+ },
5411
5633
  "ListServerCertificatesRequest":{
5412
5634
  "type":"structure",
5413
5635
  "members":{
@@ -5832,7 +6054,44 @@
5832
6054
  "type":"string",
5833
6055
  "min":1,
5834
6056
  "max":128,
5835
- "pattern":"[\\w._-]*"
6057
+ "pattern":"[\\w._-]+"
6058
+ },
6059
+ "SSHPublicKey":{
6060
+ "type":"structure",
6061
+ "required":[
6062
+ "UserName",
6063
+ "SSHPublicKeyId",
6064
+ "Fingerprint",
6065
+ "SSHPublicKeyBody",
6066
+ "Status"
6067
+ ],
6068
+ "members":{
6069
+ "UserName":{"shape":"userNameType"},
6070
+ "SSHPublicKeyId":{"shape":"publicKeyIdType"},
6071
+ "Fingerprint":{"shape":"publicKeyFingerprintType"},
6072
+ "SSHPublicKeyBody":{"shape":"publicKeyMaterialType"},
6073
+ "Status":{"shape":"statusType"},
6074
+ "UploadDate":{"shape":"dateType"}
6075
+ }
6076
+ },
6077
+ "SSHPublicKeyListType":{
6078
+ "type":"list",
6079
+ "member":{"shape":"SSHPublicKeyMetadata"}
6080
+ },
6081
+ "SSHPublicKeyMetadata":{
6082
+ "type":"structure",
6083
+ "required":[
6084
+ "UserName",
6085
+ "SSHPublicKeyId",
6086
+ "Status",
6087
+ "UploadDate"
6088
+ ],
6089
+ "members":{
6090
+ "UserName":{"shape":"userNameType"},
6091
+ "SSHPublicKeyId":{"shape":"publicKeyIdType"},
6092
+ "Status":{"shape":"statusType"},
6093
+ "UploadDate":{"shape":"dateType"}
6094
+ }
5836
6095
  },
5837
6096
  "ServerCertificate":{
5838
6097
  "type":"structure",
@@ -5901,6 +6160,18 @@
5901
6160
  "UploadDate":{"shape":"dateType"}
5902
6161
  }
5903
6162
  },
6163
+ "UnrecognizedPublicKeyEncodingException":{
6164
+ "type":"structure",
6165
+ "members":{
6166
+ "message":{"shape":"unrecognizedPublicKeyEncodingMessage"}
6167
+ },
6168
+ "error":{
6169
+ "code":"UnrecognizedPublicKeyEncoding",
6170
+ "httpStatusCode":400,
6171
+ "senderFault":true
6172
+ },
6173
+ "exception":true
6174
+ },
5904
6175
  "UpdateAccessKeyRequest":{
5905
6176
  "type":"structure",
5906
6177
  "required":[
@@ -5984,6 +6255,19 @@
5984
6255
  "SAMLProviderArn":{"shape":"arnType"}
5985
6256
  }
5986
6257
  },
6258
+ "UpdateSSHPublicKeyRequest":{
6259
+ "type":"structure",
6260
+ "required":[
6261
+ "UserName",
6262
+ "SSHPublicKeyId",
6263
+ "Status"
6264
+ ],
6265
+ "members":{
6266
+ "UserName":{"shape":"userNameType"},
6267
+ "SSHPublicKeyId":{"shape":"publicKeyIdType"},
6268
+ "Status":{"shape":"statusType"}
6269
+ }
6270
+ },
5987
6271
  "UpdateServerCertificateRequest":{
5988
6272
  "type":"structure",
5989
6273
  "required":["ServerCertificateName"],
@@ -6014,6 +6298,23 @@
6014
6298
  "NewUserName":{"shape":"userNameType"}
6015
6299
  }
6016
6300
  },
6301
+ "UploadSSHPublicKeyRequest":{
6302
+ "type":"structure",
6303
+ "required":[
6304
+ "UserName",
6305
+ "SSHPublicKeyBody"
6306
+ ],
6307
+ "members":{
6308
+ "UserName":{"shape":"userNameType"},
6309
+ "SSHPublicKeyBody":{"shape":"publicKeyMaterialType"}
6310
+ }
6311
+ },
6312
+ "UploadSSHPublicKeyResponse":{
6313
+ "type":"structure",
6314
+ "members":{
6315
+ "SSHPublicKey":{"shape":"SSHPublicKey"}
6316
+ }
6317
+ },
6017
6318
  "UploadServerCertificateRequest":{
6018
6319
  "type":"structure",
6019
6320
  "required":[
@@ -6096,7 +6397,7 @@
6096
6397
  "type":"string",
6097
6398
  "min":16,
6098
6399
  "max":32,
6099
- "pattern":"[\\w]*"
6400
+ "pattern":"[\\w]+"
6100
6401
  },
6101
6402
  "accessKeyMetadataListType":{
6102
6403
  "type":"list",
@@ -6138,7 +6439,7 @@
6138
6439
  "type":"string",
6139
6440
  "min":6,
6140
6441
  "max":6,
6141
- "pattern":"[\\d]*"
6442
+ "pattern":"[\\d]+"
6142
6443
  },
6143
6444
  "booleanObjectType":{
6144
6445
  "type":"boolean",
@@ -6155,13 +6456,13 @@
6155
6456
  "type":"string",
6156
6457
  "min":1,
6157
6458
  "max":2097152,
6158
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]*"
6459
+ "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
6159
6460
  },
6160
6461
  "certificateIdType":{
6161
6462
  "type":"string",
6162
6463
  "min":24,
6163
6464
  "max":128,
6164
- "pattern":"[\\w]*"
6465
+ "pattern":"[\\w]+"
6165
6466
  },
6166
6467
  "certificateListType":{
6167
6468
  "type":"list",
@@ -6182,6 +6483,14 @@
6182
6483
  "dateType":{"type":"timestamp"},
6183
6484
  "deleteConflictMessage":{"type":"string"},
6184
6485
  "duplicateCertificateMessage":{"type":"string"},
6486
+ "duplicateSSHPublicKeyMessage":{"type":"string"},
6487
+ "encodingType":{
6488
+ "type":"string",
6489
+ "enum":[
6490
+ "SSH",
6491
+ "PEM"
6492
+ ]
6493
+ },
6185
6494
  "entityAlreadyExistsMessage":{"type":"string"},
6186
6495
  "entityListType":{
6187
6496
  "type":"list",
@@ -6192,7 +6501,7 @@
6192
6501
  "type":"string",
6193
6502
  "min":1,
6194
6503
  "max":128,
6195
- "pattern":"[\\w+=,.@-]*"
6504
+ "pattern":"[\\w+=,.@-]+"
6196
6505
  },
6197
6506
  "groupDetailListType":{
6198
6507
  "type":"list",
@@ -6210,13 +6519,13 @@
6210
6519
  "type":"string",
6211
6520
  "min":1,
6212
6521
  "max":128,
6213
- "pattern":"[\\w+=,.@-]*"
6522
+ "pattern":"[\\w+=,.@-]+"
6214
6523
  },
6215
6524
  "idType":{
6216
6525
  "type":"string",
6217
6526
  "min":16,
6218
6527
  "max":32,
6219
- "pattern":"[\\w]*"
6528
+ "pattern":"[\\w]+"
6220
6529
  },
6221
6530
  "instanceProfileListType":{
6222
6531
  "type":"list",
@@ -6226,11 +6535,12 @@
6226
6535
  "type":"string",
6227
6536
  "min":1,
6228
6537
  "max":128,
6229
- "pattern":"[\\w+=,.@-]*"
6538
+ "pattern":"[\\w+=,.@-]+"
6230
6539
  },
6231
6540
  "invalidAuthenticationCodeMessage":{"type":"string"},
6232
6541
  "invalidCertificateMessage":{"type":"string"},
6233
6542
  "invalidInputMessage":{"type":"string"},
6543
+ "invalidPublicKeyMessage":{"type":"string"},
6234
6544
  "invalidUserTypeMessage":{"type":"string"},
6235
6545
  "keyPairMismatchMessage":{"type":"string"},
6236
6546
  "limitExceededMessage":{"type":"string"},
@@ -6240,7 +6550,7 @@
6240
6550
  "type":"string",
6241
6551
  "min":1,
6242
6552
  "max":320,
6243
- "pattern":"[\\u0020-\\u00FF]*"
6553
+ "pattern":"[\\u0020-\\u00FF]+"
6244
6554
  },
6245
6555
  "maxItemsType":{
6246
6556
  "type":"integer",
@@ -6319,7 +6629,7 @@
6319
6629
  "type":"string",
6320
6630
  "min":1,
6321
6631
  "max":128,
6322
- "pattern":"[\\w+=,.@-]*"
6632
+ "pattern":"[\\w+=,.@-]+"
6323
6633
  },
6324
6634
  "policyPathType":{
6325
6635
  "type":"string",
@@ -6341,9 +6651,27 @@
6341
6651
  "type":"string",
6342
6652
  "min":1,
6343
6653
  "max":16384,
6344
- "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]*",
6654
+ "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+",
6345
6655
  "sensitive":true
6346
6656
  },
6657
+ "publicKeyFingerprintType":{
6658
+ "type":"string",
6659
+ "min":48,
6660
+ "max":48,
6661
+ "pattern":"[:\\w]+"
6662
+ },
6663
+ "publicKeyIdType":{
6664
+ "type":"string",
6665
+ "min":20,
6666
+ "max":128,
6667
+ "pattern":"[\\w]+"
6668
+ },
6669
+ "publicKeyMaterialType":{
6670
+ "type":"string",
6671
+ "min":1,
6672
+ "max":16384,
6673
+ "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
6674
+ },
6347
6675
  "roleDetailListType":{
6348
6676
  "type":"list",
6349
6677
  "member":{"shape":"RoleDetail"}
@@ -6356,13 +6684,13 @@
6356
6684
  "type":"string",
6357
6685
  "min":1,
6358
6686
  "max":64,
6359
- "pattern":"[\\w+=,.@-]*"
6687
+ "pattern":"[\\w+=,.@-]+"
6360
6688
  },
6361
6689
  "serialNumberType":{
6362
6690
  "type":"string",
6363
6691
  "min":9,
6364
6692
  "max":256,
6365
- "pattern":"[\\w+=/:,.@-]*"
6693
+ "pattern":"[\\w+=/:,.@-]+"
6366
6694
  },
6367
6695
  "serverCertificateMetadataListType":{
6368
6696
  "type":"list",
@@ -6372,7 +6700,7 @@
6372
6700
  "type":"string",
6373
6701
  "min":1,
6374
6702
  "max":128,
6375
- "pattern":"[\\w+=,.@-]*"
6703
+ "pattern":"[\\w+=,.@-]+"
6376
6704
  },
6377
6705
  "serviceFailureExceptionMessage":{"type":"string"},
6378
6706
  "statusType":{
@@ -6428,6 +6756,7 @@
6428
6756
  "min":40,
6429
6757
  "max":40
6430
6758
  },
6759
+ "unrecognizedPublicKeyEncodingMessage":{"type":"string"},
6431
6760
  "userDetailListType":{
6432
6761
  "type":"list",
6433
6762
  "member":{"shape":"UserDetail"}
@@ -6440,7 +6769,7 @@
6440
6769
  "type":"string",
6441
6770
  "min":1,
6442
6771
  "max":64,
6443
- "pattern":"[\\w+=,.@-]*"
6772
+ "pattern":"[\\w+=,.@-]+"
6444
6773
  },
6445
6774
  "virtualMFADeviceListType":{
6446
6775
  "type":"list",
@@ -6449,7 +6778,7 @@
6449
6778
  "virtualMFADeviceName":{
6450
6779
  "type":"string",
6451
6780
  "min":1,
6452
- "pattern":"[\\w+=,.@-]*"
6781
+ "pattern":"[\\w+=,.@-]+"
6453
6782
  }
6454
6783
  }
6455
6784
  }