aws-sdk-core 2.11.177 → 2.11.178

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.
@@ -2747,6 +2747,7 @@
2747
2747
  "elasticsearch":{"shape":"ElasticsearchAction"},
2748
2748
  "salesforce":{"shape":"SalesforceAction"},
2749
2749
  "iotAnalytics":{"shape":"IotAnalyticsAction"},
2750
+ "iotEvents":{"shape":"IotEventsAction"},
2750
2751
  "stepFunctions":{"shape":"StepFunctionsAction"}
2751
2752
  }
2752
2753
  },
@@ -5402,6 +5403,11 @@
5402
5403
  ]
5403
5404
  },
5404
5405
  "InlineDocument":{"type":"string"},
5406
+ "InputName":{
5407
+ "type":"string",
5408
+ "max":128,
5409
+ "min":1
5410
+ },
5405
5411
  "InternalException":{
5406
5412
  "type":"structure",
5407
5413
  "members":{
@@ -5460,6 +5466,18 @@
5460
5466
  "roleArn":{"shape":"AwsArn"}
5461
5467
  }
5462
5468
  },
5469
+ "IotEventsAction":{
5470
+ "type":"structure",
5471
+ "required":[
5472
+ "inputName",
5473
+ "roleArn"
5474
+ ],
5475
+ "members":{
5476
+ "inputName":{"shape":"InputName"},
5477
+ "messageId":{"shape":"MessageId"},
5478
+ "roleArn":{"shape":"AwsArn"}
5479
+ }
5480
+ },
5463
5481
  "IsAuthenticated":{"type":"boolean"},
5464
5482
  "IsDefaultVersion":{"type":"boolean"},
5465
5483
  "IsDisabled":{"type":"boolean"},
@@ -6952,6 +6970,10 @@
6952
6970
  "JSON"
6953
6971
  ]
6954
6972
  },
6973
+ "MessageId":{
6974
+ "type":"string",
6975
+ "max":128
6976
+ },
6955
6977
  "MetricValue":{
6956
6978
  "type":"structure",
6957
6979
  "members":{
@@ -777,6 +777,7 @@
777
777
  "datasetName":{"shape":"DatasetName"},
778
778
  "actions":{"shape":"DatasetActions"},
779
779
  "triggers":{"shape":"DatasetTriggers"},
780
+ "contentDeliveryRules":{"shape":"DatasetContentDeliveryRules"},
780
781
  "retentionPeriod":{"shape":"RetentionPeriod"},
781
782
  "tags":{"shape":"TagList"}
782
783
  }
@@ -832,6 +833,7 @@
832
833
  "arn":{"shape":"DatasetArn"},
833
834
  "actions":{"shape":"DatasetActions"},
834
835
  "triggers":{"shape":"DatasetTriggers"},
836
+ "contentDeliveryRules":{"shape":"DatasetContentDeliveryRules"},
835
837
  "status":{"shape":"DatasetStatus"},
836
838
  "creationTime":{"shape":"Timestamp"},
837
839
  "lastUpdateTime":{"shape":"Timestamp"},
@@ -879,6 +881,26 @@
879
881
  "min":1
880
882
  },
881
883
  "DatasetArn":{"type":"string"},
884
+ "DatasetContentDeliveryDestination":{
885
+ "type":"structure",
886
+ "members":{
887
+ "iotEventsDestinationConfiguration":{"shape":"IotEventsDestinationConfiguration"}
888
+ }
889
+ },
890
+ "DatasetContentDeliveryRule":{
891
+ "type":"structure",
892
+ "required":["destination"],
893
+ "members":{
894
+ "entryName":{"shape":"EntryName"},
895
+ "destination":{"shape":"DatasetContentDeliveryDestination"}
896
+ }
897
+ },
898
+ "DatasetContentDeliveryRules":{
899
+ "type":"list",
900
+ "member":{"shape":"DatasetContentDeliveryRule"},
901
+ "max":20,
902
+ "min":0
903
+ },
882
904
  "DatasetContentState":{
883
905
  "type":"string",
884
906
  "enum":[
@@ -1297,6 +1319,23 @@
1297
1319
  "error":{"httpStatusCode":400},
1298
1320
  "exception":true
1299
1321
  },
1322
+ "IotEventsDestinationConfiguration":{
1323
+ "type":"structure",
1324
+ "required":[
1325
+ "inputName",
1326
+ "roleArn"
1327
+ ],
1328
+ "members":{
1329
+ "inputName":{"shape":"IotEventsInputName"},
1330
+ "roleArn":{"shape":"RoleArn"}
1331
+ }
1332
+ },
1333
+ "IotEventsInputName":{
1334
+ "type":"string",
1335
+ "max":128,
1336
+ "min":1,
1337
+ "pattern":"^[a-zA-Z][a-zA-Z0-9_]*$"
1338
+ },
1300
1339
  "LambdaActivity":{
1301
1340
  "type":"structure",
1302
1341
  "required":[
@@ -1937,6 +1976,7 @@
1937
1976
  },
1938
1977
  "actions":{"shape":"DatasetActions"},
1939
1978
  "triggers":{"shape":"DatasetTriggers"},
1979
+ "contentDeliveryRules":{"shape":"DatasetContentDeliveryRules"},
1940
1980
  "retentionPeriod":{"shape":"RetentionPeriod"}
1941
1981
  }
1942
1982
  },
@@ -29,6 +29,22 @@
29
29
  {"shape":"KMSInvalidStateException"}
30
30
  ]
31
31
  },
32
+ "ConnectCustomKeyStore":{
33
+ "name":"ConnectCustomKeyStore",
34
+ "http":{
35
+ "method":"POST",
36
+ "requestUri":"/"
37
+ },
38
+ "input":{"shape":"ConnectCustomKeyStoreRequest"},
39
+ "output":{"shape":"ConnectCustomKeyStoreResponse"},
40
+ "errors":[
41
+ {"shape":"CloudHsmClusterNotActiveException"},
42
+ {"shape":"CustomKeyStoreInvalidStateException"},
43
+ {"shape":"CustomKeyStoreNotFoundException"},
44
+ {"shape":"KMSInternalException"},
45
+ {"shape":"CloudHsmClusterInvalidConfigurationException"}
46
+ ]
47
+ },
32
48
  "CreateAlias":{
33
49
  "name":"CreateAlias",
34
50
  "http":{
@@ -46,6 +62,24 @@
46
62
  {"shape":"KMSInvalidStateException"}
47
63
  ]
48
64
  },
65
+ "CreateCustomKeyStore":{
66
+ "name":"CreateCustomKeyStore",
67
+ "http":{
68
+ "method":"POST",
69
+ "requestUri":"/"
70
+ },
71
+ "input":{"shape":"CreateCustomKeyStoreRequest"},
72
+ "output":{"shape":"CreateCustomKeyStoreResponse"},
73
+ "errors":[
74
+ {"shape":"CloudHsmClusterInUseException"},
75
+ {"shape":"CustomKeyStoreNameInUseException"},
76
+ {"shape":"CloudHsmClusterNotFoundException"},
77
+ {"shape":"KMSInternalException"},
78
+ {"shape":"CloudHsmClusterNotActiveException"},
79
+ {"shape":"IncorrectTrustAnchorException"},
80
+ {"shape":"CloudHsmClusterInvalidConfigurationException"}
81
+ ]
82
+ },
49
83
  "CreateGrant":{
50
84
  "name":"CreateGrant",
51
85
  "http":{
@@ -80,7 +114,10 @@
80
114
  {"shape":"UnsupportedOperationException"},
81
115
  {"shape":"KMSInternalException"},
82
116
  {"shape":"LimitExceededException"},
83
- {"shape":"TagException"}
117
+ {"shape":"TagException"},
118
+ {"shape":"CustomKeyStoreNotFoundException"},
119
+ {"shape":"CustomKeyStoreInvalidStateException"},
120
+ {"shape":"CloudHsmClusterInvalidConfigurationException"}
84
121
  ]
85
122
  },
86
123
  "Decrypt":{
@@ -116,6 +153,21 @@
116
153
  {"shape":"KMSInvalidStateException"}
117
154
  ]
118
155
  },
156
+ "DeleteCustomKeyStore":{
157
+ "name":"DeleteCustomKeyStore",
158
+ "http":{
159
+ "method":"POST",
160
+ "requestUri":"/"
161
+ },
162
+ "input":{"shape":"DeleteCustomKeyStoreRequest"},
163
+ "output":{"shape":"DeleteCustomKeyStoreResponse"},
164
+ "errors":[
165
+ {"shape":"CustomKeyStoreHasCMKsException"},
166
+ {"shape":"CustomKeyStoreInvalidStateException"},
167
+ {"shape":"CustomKeyStoreNotFoundException"},
168
+ {"shape":"KMSInternalException"}
169
+ ]
170
+ },
119
171
  "DeleteImportedKeyMaterial":{
120
172
  "name":"DeleteImportedKeyMaterial",
121
173
  "http":{
@@ -132,6 +184,19 @@
132
184
  {"shape":"KMSInvalidStateException"}
133
185
  ]
134
186
  },
187
+ "DescribeCustomKeyStores":{
188
+ "name":"DescribeCustomKeyStores",
189
+ "http":{
190
+ "method":"POST",
191
+ "requestUri":"/"
192
+ },
193
+ "input":{"shape":"DescribeCustomKeyStoresRequest"},
194
+ "output":{"shape":"DescribeCustomKeyStoresResponse"},
195
+ "errors":[
196
+ {"shape":"CustomKeyStoreNotFoundException"},
197
+ {"shape":"KMSInternalException"}
198
+ ]
199
+ },
135
200
  "DescribeKey":{
136
201
  "name":"DescribeKey",
137
202
  "http":{
@@ -179,6 +244,20 @@
179
244
  {"shape":"UnsupportedOperationException"}
180
245
  ]
181
246
  },
247
+ "DisconnectCustomKeyStore":{
248
+ "name":"DisconnectCustomKeyStore",
249
+ "http":{
250
+ "method":"POST",
251
+ "requestUri":"/"
252
+ },
253
+ "input":{"shape":"DisconnectCustomKeyStoreRequest"},
254
+ "output":{"shape":"DisconnectCustomKeyStoreResponse"},
255
+ "errors":[
256
+ {"shape":"CustomKeyStoreInvalidStateException"},
257
+ {"shape":"CustomKeyStoreNotFoundException"},
258
+ {"shape":"KMSInternalException"}
259
+ ]
260
+ },
182
261
  "EnableKey":{
183
262
  "name":"EnableKey",
184
263
  "http":{
@@ -279,7 +358,9 @@
279
358
  "output":{"shape":"GenerateRandomResponse"},
280
359
  "errors":[
281
360
  {"shape":"DependencyTimeoutException"},
282
- {"shape":"KMSInternalException"}
361
+ {"shape":"KMSInternalException"},
362
+ {"shape":"CustomKeyStoreNotFoundException"},
363
+ {"shape":"CustomKeyStoreInvalidStateException"}
283
364
  ]
284
365
  },
285
366
  "GetKeyPolicy":{
@@ -364,7 +445,9 @@
364
445
  "errors":[
365
446
  {"shape":"DependencyTimeoutException"},
366
447
  {"shape":"InvalidMarkerException"},
367
- {"shape":"KMSInternalException"}
448
+ {"shape":"KMSInternalException"},
449
+ {"shape":"InvalidArnException"},
450
+ {"shape":"NotFoundException"}
368
451
  ]
369
452
  },
370
453
  "ListGrants":{
@@ -577,6 +660,24 @@
577
660
  {"shape":"KMSInvalidStateException"}
578
661
  ]
579
662
  },
663
+ "UpdateCustomKeyStore":{
664
+ "name":"UpdateCustomKeyStore",
665
+ "http":{
666
+ "method":"POST",
667
+ "requestUri":"/"
668
+ },
669
+ "input":{"shape":"UpdateCustomKeyStoreRequest"},
670
+ "output":{"shape":"UpdateCustomKeyStoreResponse"},
671
+ "errors":[
672
+ {"shape":"CustomKeyStoreNotFoundException"},
673
+ {"shape":"CloudHsmClusterNotFoundException"},
674
+ {"shape":"CloudHsmClusterNotRelatedException"},
675
+ {"shape":"CustomKeyStoreInvalidStateException"},
676
+ {"shape":"KMSInternalException"},
677
+ {"shape":"CloudHsmClusterNotActiveException"},
678
+ {"shape":"CloudHsmClusterInvalidConfigurationException"}
679
+ ]
680
+ },
580
681
  "UpdateKeyDescription":{
581
682
  "name":"UpdateKeyDescription",
582
683
  "http":{
@@ -652,6 +753,78 @@
652
753
  "max":6144,
653
754
  "min":1
654
755
  },
756
+ "CloudHsmClusterIdType":{
757
+ "type":"string",
758
+ "max":24,
759
+ "min":19
760
+ },
761
+ "CloudHsmClusterInUseException":{
762
+ "type":"structure",
763
+ "members":{
764
+ "message":{"shape":"ErrorMessageType"}
765
+ },
766
+ "exception":true
767
+ },
768
+ "CloudHsmClusterInvalidConfigurationException":{
769
+ "type":"structure",
770
+ "members":{
771
+ "message":{"shape":"ErrorMessageType"}
772
+ },
773
+ "exception":true
774
+ },
775
+ "CloudHsmClusterNotActiveException":{
776
+ "type":"structure",
777
+ "members":{
778
+ "message":{"shape":"ErrorMessageType"}
779
+ },
780
+ "exception":true
781
+ },
782
+ "CloudHsmClusterNotFoundException":{
783
+ "type":"structure",
784
+ "members":{
785
+ "message":{"shape":"ErrorMessageType"}
786
+ },
787
+ "exception":true
788
+ },
789
+ "CloudHsmClusterNotRelatedException":{
790
+ "type":"structure",
791
+ "members":{
792
+ "message":{"shape":"ErrorMessageType"}
793
+ },
794
+ "exception":true
795
+ },
796
+ "ConnectCustomKeyStoreRequest":{
797
+ "type":"structure",
798
+ "required":["CustomKeyStoreId"],
799
+ "members":{
800
+ "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"}
801
+ }
802
+ },
803
+ "ConnectCustomKeyStoreResponse":{
804
+ "type":"structure",
805
+ "members":{
806
+ }
807
+ },
808
+ "ConnectionErrorCodeType":{
809
+ "type":"string",
810
+ "enum":[
811
+ "INVALID_CREDENTIALS",
812
+ "CLUSTER_NOT_FOUND",
813
+ "NETWORK_ERRORS",
814
+ "INSUFFICIENT_CLOUDHSM_HSMS",
815
+ "USER_LOCKED_OUT"
816
+ ]
817
+ },
818
+ "ConnectionStateType":{
819
+ "type":"string",
820
+ "enum":[
821
+ "CONNECTED",
822
+ "CONNECTING",
823
+ "FAILED",
824
+ "DISCONNECTED",
825
+ "DISCONNECTING"
826
+ ]
827
+ },
655
828
  "CreateAliasRequest":{
656
829
  "type":"structure",
657
830
  "required":[
@@ -663,6 +836,27 @@
663
836
  "TargetKeyId":{"shape":"KeyIdType"}
664
837
  }
665
838
  },
839
+ "CreateCustomKeyStoreRequest":{
840
+ "type":"structure",
841
+ "required":[
842
+ "CustomKeyStoreName",
843
+ "CloudHsmClusterId",
844
+ "TrustAnchorCertificate",
845
+ "KeyStorePassword"
846
+ ],
847
+ "members":{
848
+ "CustomKeyStoreName":{"shape":"CustomKeyStoreNameType"},
849
+ "CloudHsmClusterId":{"shape":"CloudHsmClusterIdType"},
850
+ "TrustAnchorCertificate":{"shape":"TrustAnchorCertificateType"},
851
+ "KeyStorePassword":{"shape":"KeyStorePasswordType"}
852
+ }
853
+ },
854
+ "CreateCustomKeyStoreResponse":{
855
+ "type":"structure",
856
+ "members":{
857
+ "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"}
858
+ }
859
+ },
666
860
  "CreateGrantRequest":{
667
861
  "type":"structure",
668
862
  "required":[
@@ -694,6 +888,7 @@
694
888
  "Description":{"shape":"DescriptionType"},
695
889
  "KeyUsage":{"shape":"KeyUsageType"},
696
890
  "Origin":{"shape":"OriginType"},
891
+ "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"},
697
892
  "BypassPolicyLockoutSafetyCheck":{"shape":"BooleanType"},
698
893
  "Tags":{"shape":"TagList"}
699
894
  }
@@ -704,6 +899,60 @@
704
899
  "KeyMetadata":{"shape":"KeyMetadata"}
705
900
  }
706
901
  },
902
+ "CustomKeyStoreHasCMKsException":{
903
+ "type":"structure",
904
+ "members":{
905
+ "message":{"shape":"ErrorMessageType"}
906
+ },
907
+ "exception":true
908
+ },
909
+ "CustomKeyStoreIdType":{
910
+ "type":"string",
911
+ "max":64,
912
+ "min":1
913
+ },
914
+ "CustomKeyStoreInvalidStateException":{
915
+ "type":"structure",
916
+ "members":{
917
+ "message":{"shape":"ErrorMessageType"}
918
+ },
919
+ "exception":true
920
+ },
921
+ "CustomKeyStoreNameInUseException":{
922
+ "type":"structure",
923
+ "members":{
924
+ "message":{"shape":"ErrorMessageType"}
925
+ },
926
+ "exception":true
927
+ },
928
+ "CustomKeyStoreNameType":{
929
+ "type":"string",
930
+ "max":256,
931
+ "min":1
932
+ },
933
+ "CustomKeyStoreNotFoundException":{
934
+ "type":"structure",
935
+ "members":{
936
+ "message":{"shape":"ErrorMessageType"}
937
+ },
938
+ "exception":true
939
+ },
940
+ "CustomKeyStoresList":{
941
+ "type":"list",
942
+ "member":{"shape":"CustomKeyStoresListEntry"}
943
+ },
944
+ "CustomKeyStoresListEntry":{
945
+ "type":"structure",
946
+ "members":{
947
+ "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"},
948
+ "CustomKeyStoreName":{"shape":"CustomKeyStoreNameType"},
949
+ "CloudHsmClusterId":{"shape":"CloudHsmClusterIdType"},
950
+ "TrustAnchorCertificate":{"shape":"TrustAnchorCertificateType"},
951
+ "ConnectionState":{"shape":"ConnectionStateType"},
952
+ "ConnectionErrorCode":{"shape":"ConnectionErrorCodeType"},
953
+ "CreationDate":{"shape":"DateType"}
954
+ }
955
+ },
707
956
  "DataKeySpec":{
708
957
  "type":"string",
709
958
  "enum":[
@@ -735,6 +984,18 @@
735
984
  "AliasName":{"shape":"AliasNameType"}
736
985
  }
737
986
  },
987
+ "DeleteCustomKeyStoreRequest":{
988
+ "type":"structure",
989
+ "required":["CustomKeyStoreId"],
990
+ "members":{
991
+ "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"}
992
+ }
993
+ },
994
+ "DeleteCustomKeyStoreResponse":{
995
+ "type":"structure",
996
+ "members":{
997
+ }
998
+ },
738
999
  "DeleteImportedKeyMaterialRequest":{
739
1000
  "type":"structure",
740
1001
  "required":["KeyId"],
@@ -750,6 +1011,23 @@
750
1011
  "exception":true,
751
1012
  "fault":true
752
1013
  },
1014
+ "DescribeCustomKeyStoresRequest":{
1015
+ "type":"structure",
1016
+ "members":{
1017
+ "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"},
1018
+ "CustomKeyStoreName":{"shape":"CustomKeyStoreNameType"},
1019
+ "Limit":{"shape":"LimitType"},
1020
+ "Marker":{"shape":"MarkerType"}
1021
+ }
1022
+ },
1023
+ "DescribeCustomKeyStoresResponse":{
1024
+ "type":"structure",
1025
+ "members":{
1026
+ "CustomKeyStores":{"shape":"CustomKeyStoresList"},
1027
+ "NextMarker":{"shape":"MarkerType"},
1028
+ "Truncated":{"shape":"BooleanType"}
1029
+ }
1030
+ },
753
1031
  "DescribeKeyRequest":{
754
1032
  "type":"structure",
755
1033
  "required":["KeyId"],
@@ -790,6 +1068,18 @@
790
1068
  },
791
1069
  "exception":true
792
1070
  },
1071
+ "DisconnectCustomKeyStoreRequest":{
1072
+ "type":"structure",
1073
+ "required":["CustomKeyStoreId"],
1074
+ "members":{
1075
+ "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"}
1076
+ }
1077
+ },
1078
+ "DisconnectCustomKeyStoreResponse":{
1079
+ "type":"structure",
1080
+ "members":{
1081
+ }
1082
+ },
793
1083
  "EnableKeyRequest":{
794
1084
  "type":"structure",
795
1085
  "required":["KeyId"],
@@ -886,7 +1176,8 @@
886
1176
  "GenerateRandomRequest":{
887
1177
  "type":"structure",
888
1178
  "members":{
889
- "NumberOfBytes":{"shape":"NumberOfBytesType"}
1179
+ "NumberOfBytes":{"shape":"NumberOfBytesType"},
1180
+ "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"}
890
1181
  }
891
1182
  },
892
1183
  "GenerateRandomResponse":{
@@ -1039,6 +1330,13 @@
1039
1330
  },
1040
1331
  "exception":true
1041
1332
  },
1333
+ "IncorrectTrustAnchorException":{
1334
+ "type":"structure",
1335
+ "members":{
1336
+ "message":{"shape":"ErrorMessageType"}
1337
+ },
1338
+ "exception":true
1339
+ },
1042
1340
  "InvalidAliasNameException":{
1043
1341
  "type":"structure",
1044
1342
  "members":{
@@ -1100,7 +1398,8 @@
1100
1398
  "members":{
1101
1399
  "message":{"shape":"ErrorMessageType"}
1102
1400
  },
1103
- "exception":true
1401
+ "exception":true,
1402
+ "fault":true
1104
1403
  },
1105
1404
  "KMSInvalidStateException":{
1106
1405
  "type":"structure",
@@ -1147,6 +1446,8 @@
1147
1446
  "DeletionDate":{"shape":"DateType"},
1148
1447
  "ValidTo":{"shape":"DateType"},
1149
1448
  "Origin":{"shape":"OriginType"},
1449
+ "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"},
1450
+ "CloudHsmClusterId":{"shape":"CloudHsmClusterIdType"},
1150
1451
  "ExpirationModel":{"shape":"ExpirationModelType"},
1151
1452
  "KeyManager":{"shape":"KeyManagerType"}
1152
1453
  }
@@ -1157,9 +1458,15 @@
1157
1458
  "Enabled",
1158
1459
  "Disabled",
1159
1460
  "PendingDeletion",
1160
- "PendingImport"
1461
+ "PendingImport",
1462
+ "Unavailable"
1161
1463
  ]
1162
1464
  },
1465
+ "KeyStorePasswordType":{
1466
+ "type":"string",
1467
+ "min":1,
1468
+ "sensitive":true
1469
+ },
1163
1470
  "KeyUnavailableException":{
1164
1471
  "type":"structure",
1165
1472
  "members":{
@@ -1304,7 +1611,8 @@
1304
1611
  "type":"string",
1305
1612
  "enum":[
1306
1613
  "AWS_KMS",
1307
- "EXTERNAL"
1614
+ "EXTERNAL",
1615
+ "AWS_CLOUDHSM"
1308
1616
  ]
1309
1617
  },
1310
1618
  "PendingWindowInDaysType":{
@@ -1337,7 +1645,8 @@
1337
1645
  "PrincipalIdType":{
1338
1646
  "type":"string",
1339
1647
  "max":256,
1340
- "min":1
1648
+ "min":1,
1649
+ "pattern":"^[\\w+=,.@:/-]+$"
1341
1650
  },
1342
1651
  "PutKeyPolicyRequest":{
1343
1652
  "type":"structure",
@@ -1456,6 +1765,11 @@
1456
1765
  "max":256,
1457
1766
  "min":0
1458
1767
  },
1768
+ "TrustAnchorCertificateType":{
1769
+ "type":"string",
1770
+ "max":5000,
1771
+ "min":1
1772
+ },
1459
1773
  "UnsupportedOperationException":{
1460
1774
  "type":"structure",
1461
1775
  "members":{
@@ -1485,6 +1799,21 @@
1485
1799
  "TargetKeyId":{"shape":"KeyIdType"}
1486
1800
  }
1487
1801
  },
1802
+ "UpdateCustomKeyStoreRequest":{
1803
+ "type":"structure",
1804
+ "required":["CustomKeyStoreId"],
1805
+ "members":{
1806
+ "CustomKeyStoreId":{"shape":"CustomKeyStoreIdType"},
1807
+ "NewCustomKeyStoreName":{"shape":"CustomKeyStoreNameType"},
1808
+ "KeyStorePassword":{"shape":"KeyStorePasswordType"},
1809
+ "CloudHsmClusterId":{"shape":"CloudHsmClusterIdType"}
1810
+ }
1811
+ },
1812
+ "UpdateCustomKeyStoreResponse":{
1813
+ "type":"structure",
1814
+ "members":{
1815
+ }
1816
+ },
1488
1817
  "UpdateKeyDescriptionRequest":{
1489
1818
  "type":"structure",
1490
1819
  "required":[