@aws-sdk/client-service-catalog 3.301.0 → 3.305.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.
Files changed (35) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/ServiceCatalog.js +45 -0
  3. package/dist-cjs/commands/NotifyProvisionProductEngineWorkflowResultCommand.js +45 -0
  4. package/dist-cjs/commands/NotifyTerminateProvisionedProductEngineWorkflowResultCommand.js +45 -0
  5. package/dist-cjs/commands/NotifyUpdateProvisionedProductEngineWorkflowResultCommand.js +45 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/models/models_0.js +186 -213
  8. package/dist-cjs/protocols/Aws_json1_1.js +215 -3
  9. package/dist-es/ServiceCatalog.js +45 -0
  10. package/dist-es/commands/NotifyProvisionProductEngineWorkflowResultCommand.js +41 -0
  11. package/dist-es/commands/NotifyTerminateProvisionedProductEngineWorkflowResultCommand.js +41 -0
  12. package/dist-es/commands/NotifyUpdateProvisionedProductEngineWorkflowResultCommand.js +41 -0
  13. package/dist-es/commands/index.js +3 -0
  14. package/dist-es/models/models_0.js +185 -212
  15. package/dist-es/protocols/Aws_json1_1.js +206 -0
  16. package/dist-types/ServiceCatalog.d.ts +33 -0
  17. package/dist-types/ServiceCatalogClient.d.ts +5 -2
  18. package/dist-types/commands/AssociateServiceActionWithProvisioningArtifactCommand.d.ts +3 -0
  19. package/dist-types/commands/CreateProductCommand.d.ts +2 -2
  20. package/dist-types/commands/CreateProvisioningArtifactCommand.d.ts +1 -1
  21. package/dist-types/commands/NotifyProvisionProductEngineWorkflowResultCommand.d.ts +89 -0
  22. package/dist-types/commands/NotifyTerminateProvisionedProductEngineWorkflowResultCommand.d.ts +76 -0
  23. package/dist-types/commands/NotifyUpdateProvisionedProductEngineWorkflowResultCommand.d.ts +83 -0
  24. package/dist-types/commands/index.d.ts +3 -0
  25. package/dist-types/models/models_0.d.ts +588 -470
  26. package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
  27. package/dist-types/ts3.4/ServiceCatalog.d.ts +69 -0
  28. package/dist-types/ts3.4/ServiceCatalogClient.d.ts +18 -0
  29. package/dist-types/ts3.4/commands/NotifyProvisionProductEngineWorkflowResultCommand.d.ts +41 -0
  30. package/dist-types/ts3.4/commands/NotifyTerminateProvisionedProductEngineWorkflowResultCommand.d.ts +43 -0
  31. package/dist-types/ts3.4/commands/NotifyUpdateProvisionedProductEngineWorkflowResultCommand.d.ts +43 -0
  32. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  33. package/dist-types/ts3.4/models/models_0.d.ts +280 -176
  34. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
  35. package/package.json +34 -34
@@ -2,12 +2,17 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
2
2
  import { ServiceCatalogServiceException as __BaseException } from "./ServiceCatalogServiceException";
3
3
  /**
4
4
  * @public
5
+ * @enum
5
6
  */
6
- export declare enum PortfolioShareType {
7
- AWS_ORGANIZATIONS = "AWS_ORGANIZATIONS",
8
- AWS_SERVICECATALOG = "AWS_SERVICECATALOG",
9
- IMPORTED = "IMPORTED"
10
- }
7
+ export declare const PortfolioShareType: {
8
+ readonly AWS_ORGANIZATIONS: "AWS_ORGANIZATIONS";
9
+ readonly AWS_SERVICECATALOG: "AWS_SERVICECATALOG";
10
+ readonly IMPORTED: "IMPORTED";
11
+ };
12
+ /**
13
+ * @public
14
+ */
15
+ export type PortfolioShareType = (typeof PortfolioShareType)[keyof typeof PortfolioShareType];
11
16
  /**
12
17
  * @public
13
18
  */
@@ -17,10 +22,6 @@ export interface AcceptPortfolioShareInput {
17
22
  * <ul>
18
23
  * <li>
19
24
  * <p>
20
- * <code>en</code> - English (default)</p>
21
- * </li>
22
- * <li>
23
- * <p>
24
25
  * <code>jp</code> - Japanese</p>
25
26
  * </li>
26
27
  * <li>
@@ -103,12 +104,17 @@ export declare class ResourceNotFoundException extends __BaseException {
103
104
  }
104
105
  /**
105
106
  * @public
107
+ * @enum
106
108
  */
107
- export declare enum AccessLevelFilterKey {
108
- ACCOUNT = "Account",
109
- ROLE = "Role",
110
- USER = "User"
111
- }
109
+ export declare const AccessLevelFilterKey: {
110
+ readonly ACCOUNT: "Account";
111
+ readonly ROLE: "Role";
112
+ readonly USER: "User";
113
+ };
114
+ /**
115
+ * @public
116
+ */
117
+ export type AccessLevelFilterKey = (typeof AccessLevelFilterKey)[keyof typeof AccessLevelFilterKey];
112
118
  /**
113
119
  * @public
114
120
  * <p>The access level to use to filter results.</p>
@@ -139,12 +145,17 @@ export interface AccessLevelFilter {
139
145
  }
140
146
  /**
141
147
  * @public
148
+ * @enum
142
149
  */
143
- export declare enum AccessStatus {
144
- DISABLED = "DISABLED",
145
- ENABLED = "ENABLED",
146
- UNDER_CHANGE = "UNDER_CHANGE"
147
- }
150
+ export declare const AccessStatus: {
151
+ readonly DISABLED: "DISABLED";
152
+ readonly ENABLED: "ENABLED";
153
+ readonly UNDER_CHANGE: "UNDER_CHANGE";
154
+ };
155
+ /**
156
+ * @public
157
+ */
158
+ export type AccessStatus = (typeof AccessStatus)[keyof typeof AccessStatus];
148
159
  /**
149
160
  * @public
150
161
  * <p>Information about a tag. A tag is a key-value pair. Tags are propagated
@@ -193,11 +204,16 @@ export declare class DuplicateResourceException extends __BaseException {
193
204
  }
194
205
  /**
195
206
  * @public
207
+ * @enum
196
208
  */
197
- export declare enum PrincipalType {
198
- IAM = "IAM",
199
- IAM_PATTERN = "IAM_PATTERN"
200
- }
209
+ export declare const PrincipalType: {
210
+ readonly IAM: "IAM";
211
+ readonly IAM_PATTERN: "IAM_PATTERN";
212
+ };
213
+ /**
214
+ * @public
215
+ */
216
+ export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
201
217
  /**
202
218
  * @public
203
219
  */
@@ -207,10 +223,6 @@ export interface AssociatePrincipalWithPortfolioInput {
207
223
  * <ul>
208
224
  * <li>
209
225
  * <p>
210
- * <code>en</code> - English (default)</p>
211
- * </li>
212
- * <li>
213
- * <p>
214
226
  * <code>jp</code> - Japanese</p>
215
227
  * </li>
216
228
  * <li>
@@ -225,7 +237,7 @@ export interface AssociatePrincipalWithPortfolioInput {
225
237
  */
226
238
  PortfolioId: string | undefined;
227
239
  /**
228
- * <p>The ARN of the principal (IAM user, role, or group). This field allows an ARN with no <code>accountID</code> if
240
+ * <p>The ARN of the principal (user, role, or group). This field allows an ARN with no <code>accountID</code> if
229
241
  * <code>PrincipalType</code> is <code>IAM_PATTERN</code>. </p>
230
242
  * <p>You can associate multiple <code>IAM</code> patterns even if the account has no principal with that name.
231
243
  * This is useful in Principal Name Sharing if you want to share a principal without creating it in the
@@ -252,10 +264,6 @@ export interface AssociateProductWithPortfolioInput {
252
264
  * <ul>
253
265
  * <li>
254
266
  * <p>
255
- * <code>en</code> - English (default)</p>
256
- * </li>
257
- * <li>
258
- * <p>
259
267
  * <code>jp</code> - Japanese</p>
260
268
  * </li>
261
269
  * <li>
@@ -304,10 +312,6 @@ export interface AssociateServiceActionWithProvisioningArtifactInput {
304
312
  * <ul>
305
313
  * <li>
306
314
  * <p>
307
- * <code>en</code> - English (default)</p>
308
- * </li>
309
- * <li>
310
- * <p>
311
315
  * <code>jp</code> - Japanese</p>
312
316
  * </li>
313
317
  * <li>
@@ -401,10 +405,6 @@ export interface BatchAssociateServiceActionWithProvisioningArtifactInput {
401
405
  * <ul>
402
406
  * <li>
403
407
  * <p>
404
- * <code>en</code> - English (default)</p>
405
- * </li>
406
- * <li>
407
- * <p>
408
408
  * <code>jp</code> - Japanese</p>
409
409
  * </li>
410
410
  * <li>
@@ -417,14 +417,20 @@ export interface BatchAssociateServiceActionWithProvisioningArtifactInput {
417
417
  }
418
418
  /**
419
419
  * @public
420
+ * @enum
420
421
  */
421
- export declare enum ServiceActionAssociationErrorCode {
422
- DuplicateResourceException = "DUPLICATE_RESOURCE",
423
- InternalFailure = "INTERNAL_FAILURE",
424
- LimitExceededException = "LIMIT_EXCEEDED",
425
- ResourceNotFoundException = "RESOURCE_NOT_FOUND",
426
- ThrottlingException = "THROTTLING"
427
- }
422
+ export declare const ServiceActionAssociationErrorCode: {
423
+ readonly DuplicateResourceException: "DUPLICATE_RESOURCE";
424
+ readonly InternalFailure: "INTERNAL_FAILURE";
425
+ readonly InvalidParameterException: "INVALID_PARAMETER";
426
+ readonly LimitExceededException: "LIMIT_EXCEEDED";
427
+ readonly ResourceNotFoundException: "RESOURCE_NOT_FOUND";
428
+ readonly ThrottlingException: "THROTTLING";
429
+ };
430
+ /**
431
+ * @public
432
+ */
433
+ export type ServiceActionAssociationErrorCode = (typeof ServiceActionAssociationErrorCode)[keyof typeof ServiceActionAssociationErrorCode];
428
434
  /**
429
435
  * @public
430
436
  * <p>An object containing information about the error, along with identifying information about the self-service action and its associations.</p>
@@ -473,10 +479,6 @@ export interface BatchDisassociateServiceActionFromProvisioningArtifactInput {
473
479
  * <ul>
474
480
  * <li>
475
481
  * <p>
476
- * <code>en</code> - English (default)</p>
477
- * </li>
478
- * <li>
479
- * <p>
480
482
  * <code>jp</code> - Japanese</p>
481
483
  * </li>
482
484
  * <li>
@@ -498,16 +500,26 @@ export interface BatchDisassociateServiceActionFromProvisioningArtifactOutput {
498
500
  }
499
501
  /**
500
502
  * @public
503
+ * @enum
501
504
  */
502
- export declare enum CopyOption {
503
- CopyTags = "CopyTags"
504
- }
505
+ export declare const CopyOption: {
506
+ readonly CopyTags: "CopyTags";
507
+ };
505
508
  /**
506
509
  * @public
507
510
  */
508
- export declare enum ProvisioningArtifactPropertyName {
509
- Id = "Id"
510
- }
511
+ export type CopyOption = (typeof CopyOption)[keyof typeof CopyOption];
512
+ /**
513
+ * @public
514
+ * @enum
515
+ */
516
+ export declare const ProvisioningArtifactPropertyName: {
517
+ readonly Id: "Id";
518
+ };
519
+ /**
520
+ * @public
521
+ */
522
+ export type ProvisioningArtifactPropertyName = (typeof ProvisioningArtifactPropertyName)[keyof typeof ProvisioningArtifactPropertyName];
511
523
  /**
512
524
  * @public
513
525
  */
@@ -517,10 +529,6 @@ export interface CopyProductInput {
517
529
  * <ul>
518
530
  * <li>
519
531
  * <p>
520
- * <code>en</code> - English (default)</p>
521
- * </li>
522
- * <li>
523
- * <p>
524
532
  * <code>jp</code> - Japanese</p>
525
533
  * </li>
526
534
  * <li>
@@ -576,10 +584,6 @@ export interface CreateConstraintInput {
576
584
  * <ul>
577
585
  * <li>
578
586
  * <p>
579
- * <code>en</code> - English (default)</p>
580
- * </li>
581
- * <li>
582
- * <p>
583
587
  * <code>jp</code> - Japanese</p>
584
588
  * </li>
585
589
  * <li>
@@ -745,12 +749,17 @@ export interface ConstraintDetail {
745
749
  }
746
750
  /**
747
751
  * @public
752
+ * @enum
748
753
  */
749
- export declare enum Status {
750
- AVAILABLE = "AVAILABLE",
751
- CREATING = "CREATING",
752
- FAILED = "FAILED"
753
- }
754
+ export declare const Status: {
755
+ readonly AVAILABLE: "AVAILABLE";
756
+ readonly CREATING: "CREATING";
757
+ readonly FAILED: "FAILED";
758
+ };
759
+ /**
760
+ * @public
761
+ */
762
+ export type Status = (typeof Status)[keyof typeof Status];
754
763
  /**
755
764
  * @public
756
765
  */
@@ -777,10 +786,6 @@ export interface CreatePortfolioInput {
777
786
  * <ul>
778
787
  * <li>
779
788
  * <p>
780
- * <code>en</code> - English (default)</p>
781
- * </li>
782
- * <li>
783
- * <p>
784
789
  * <code>jp</code> - Japanese</p>
785
790
  * </li>
786
791
  * <li>
@@ -857,12 +862,17 @@ export interface CreatePortfolioOutput {
857
862
  }
858
863
  /**
859
864
  * @public
865
+ * @enum
860
866
  */
861
- export declare enum OrganizationNodeType {
862
- ACCOUNT = "ACCOUNT",
863
- ORGANIZATION = "ORGANIZATION",
864
- ORGANIZATIONAL_UNIT = "ORGANIZATIONAL_UNIT"
865
- }
867
+ export declare const OrganizationNodeType: {
868
+ readonly ACCOUNT: "ACCOUNT";
869
+ readonly ORGANIZATION: "ORGANIZATION";
870
+ readonly ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT";
871
+ };
872
+ /**
873
+ * @public
874
+ */
875
+ export type OrganizationNodeType = (typeof OrganizationNodeType)[keyof typeof OrganizationNodeType];
866
876
  /**
867
877
  * @public
868
878
  * <p>Information about the organization node.</p>
@@ -886,10 +896,6 @@ export interface CreatePortfolioShareInput {
886
896
  * <ul>
887
897
  * <li>
888
898
  * <p>
889
- * <code>en</code> - English (default)</p>
890
- * </li>
891
- * <li>
892
- * <p>
893
899
  * <code>jp</code> - Japanese</p>
894
900
  * </li>
895
901
  * <li>
@@ -953,19 +959,33 @@ export declare class OperationNotSupportedException extends __BaseException {
953
959
  }
954
960
  /**
955
961
  * @public
962
+ * @enum
956
963
  */
957
- export declare enum ProductType {
958
- CLOUD_FORMATION_TEMPLATE = "CLOUD_FORMATION_TEMPLATE",
959
- MARKETPLACE = "MARKETPLACE"
960
- }
964
+ export declare const ProductType: {
965
+ readonly CLOUD_FORMATION_TEMPLATE: "CLOUD_FORMATION_TEMPLATE";
966
+ readonly DEFAULT_CUSTOM: "DEFAULT_CUSTOM";
967
+ readonly MARKETPLACE: "MARKETPLACE";
968
+ readonly TERRAFORM_OPEN_SOURCE: "TERRAFORM_OPEN_SOURCE";
969
+ };
961
970
  /**
962
971
  * @public
963
972
  */
964
- export declare enum ProvisioningArtifactType {
965
- CLOUD_FORMATION_TEMPLATE = "CLOUD_FORMATION_TEMPLATE",
966
- MARKETPLACE_AMI = "MARKETPLACE_AMI",
967
- MARKETPLACE_CAR = "MARKETPLACE_CAR"
968
- }
973
+ export type ProductType = (typeof ProductType)[keyof typeof ProductType];
974
+ /**
975
+ * @public
976
+ * @enum
977
+ */
978
+ export declare const ProvisioningArtifactType: {
979
+ readonly CLOUD_FORMATION_TEMPLATE: "CLOUD_FORMATION_TEMPLATE";
980
+ readonly DEFAULT_CUSTOM: "DEFAULT_CUSTOM";
981
+ readonly MARKETPLACE_AMI: "MARKETPLACE_AMI";
982
+ readonly MARKETPLACE_CAR: "MARKETPLACE_CAR";
983
+ readonly TERRAFORM_OPEN_SOURCE: "TERRAFORM_OPEN_SOURCE";
984
+ };
985
+ /**
986
+ * @public
987
+ */
988
+ export type ProvisioningArtifactType = (typeof ProvisioningArtifactType)[keyof typeof ProvisioningArtifactType];
969
989
  /**
970
990
  * @public
971
991
  * <p>Information about a provisioning artifact (also known as a version) for a product.</p>
@@ -1053,10 +1073,15 @@ export interface SourceConnectionParameters {
1053
1073
  }
1054
1074
  /**
1055
1075
  * @public
1076
+ * @enum
1056
1077
  */
1057
- export declare enum SourceType {
1058
- CODESTAR = "CODESTAR"
1059
- }
1078
+ export declare const SourceType: {
1079
+ readonly CODESTAR: "CODESTAR";
1080
+ };
1081
+ /**
1082
+ * @public
1083
+ */
1084
+ export type SourceType = (typeof SourceType)[keyof typeof SourceType];
1060
1085
  /**
1061
1086
  * @public
1062
1087
  * <p>A top level <code>ProductViewDetail</code> response containing details about the product’s connection.
@@ -1084,10 +1109,6 @@ export interface CreateProductInput {
1084
1109
  * <ul>
1085
1110
  * <li>
1086
1111
  * <p>
1087
- * <code>en</code> - English (default)</p>
1088
- * </li>
1089
- * <li>
1090
- * <p>
1091
1112
  * <code>jp</code> - Japanese</p>
1092
1113
  * </li>
1093
1114
  * <li>
@@ -1222,11 +1243,16 @@ export interface ProductViewSummary {
1222
1243
  }
1223
1244
  /**
1224
1245
  * @public
1246
+ * @enum
1225
1247
  */
1226
- export declare enum LastSyncStatus {
1227
- FAILED = "FAILED",
1228
- SUCCEEDED = "SUCCEEDED"
1229
- }
1248
+ export declare const LastSyncStatus: {
1249
+ readonly FAILED: "FAILED";
1250
+ readonly SUCCEEDED: "SUCCEEDED";
1251
+ };
1252
+ /**
1253
+ * @public
1254
+ */
1255
+ export type LastSyncStatus = (typeof LastSyncStatus)[keyof typeof LastSyncStatus];
1230
1256
  /**
1231
1257
  * @public
1232
1258
  * <p>Provides details about the product's connection sync and contains the following sub-fields. </p>
@@ -1371,11 +1397,16 @@ export interface ProductViewDetail {
1371
1397
  }
1372
1398
  /**
1373
1399
  * @public
1400
+ * @enum
1374
1401
  */
1375
- export declare enum ProvisioningArtifactGuidance {
1376
- DEFAULT = "DEFAULT",
1377
- DEPRECATED = "DEPRECATED"
1378
- }
1402
+ export declare const ProvisioningArtifactGuidance: {
1403
+ readonly DEFAULT: "DEFAULT";
1404
+ readonly DEPRECATED: "DEPRECATED";
1405
+ };
1406
+ /**
1407
+ * @public
1408
+ */
1409
+ export type ProvisioningArtifactGuidance = (typeof ProvisioningArtifactGuidance)[keyof typeof ProvisioningArtifactGuidance];
1379
1410
  /**
1380
1411
  * @public
1381
1412
  * <p>Information about a provisioning artifact (also known as a version) for a product.</p>
@@ -1453,10 +1484,15 @@ export interface CreateProductOutput {
1453
1484
  }
1454
1485
  /**
1455
1486
  * @public
1487
+ * @enum
1456
1488
  */
1457
- export declare enum ProvisionedProductPlanType {
1458
- CLOUDFORMATION = "CLOUDFORMATION"
1459
- }
1489
+ export declare const ProvisionedProductPlanType: {
1490
+ readonly CLOUDFORMATION: "CLOUDFORMATION";
1491
+ };
1492
+ /**
1493
+ * @public
1494
+ */
1495
+ export type ProvisionedProductPlanType = (typeof ProvisionedProductPlanType)[keyof typeof ProvisionedProductPlanType];
1460
1496
  /**
1461
1497
  * @public
1462
1498
  * <p>The parameter key-value pair used to update a provisioned product.</p>
@@ -1484,10 +1520,6 @@ export interface CreateProvisionedProductPlanInput {
1484
1520
  * <ul>
1485
1521
  * <li>
1486
1522
  * <p>
1487
- * <code>en</code> - English (default)</p>
1488
- * </li>
1489
- * <li>
1490
- * <p>
1491
1523
  * <code>jp</code> - Japanese</p>
1492
1524
  * </li>
1493
1525
  * <li>
@@ -1579,10 +1611,6 @@ export interface CreateProvisioningArtifactInput {
1579
1611
  * <ul>
1580
1612
  * <li>
1581
1613
  * <p>
1582
- * <code>en</code> - English (default)</p>
1583
- * </li>
1584
- * <li>
1585
- * <p>
1586
1614
  * <code>jp</code> - Japanese</p>
1587
1615
  * </li>
1588
1616
  * <li>
@@ -1635,19 +1663,29 @@ export interface CreateProvisioningArtifactOutput {
1635
1663
  }
1636
1664
  /**
1637
1665
  * @public
1666
+ * @enum
1638
1667
  */
1639
- export declare enum ServiceActionDefinitionKey {
1640
- AssumeRole = "AssumeRole",
1641
- Name = "Name",
1642
- Parameters = "Parameters",
1643
- Version = "Version"
1644
- }
1668
+ export declare const ServiceActionDefinitionKey: {
1669
+ readonly AssumeRole: "AssumeRole";
1670
+ readonly Name: "Name";
1671
+ readonly Parameters: "Parameters";
1672
+ readonly Version: "Version";
1673
+ };
1645
1674
  /**
1646
1675
  * @public
1647
1676
  */
1648
- export declare enum ServiceActionDefinitionType {
1649
- SsmAutomation = "SSM_AUTOMATION"
1650
- }
1677
+ export type ServiceActionDefinitionKey = (typeof ServiceActionDefinitionKey)[keyof typeof ServiceActionDefinitionKey];
1678
+ /**
1679
+ * @public
1680
+ * @enum
1681
+ */
1682
+ export declare const ServiceActionDefinitionType: {
1683
+ readonly SsmAutomation: "SSM_AUTOMATION";
1684
+ };
1685
+ /**
1686
+ * @public
1687
+ */
1688
+ export type ServiceActionDefinitionType = (typeof ServiceActionDefinitionType)[keyof typeof ServiceActionDefinitionType];
1651
1689
  /**
1652
1690
  * @public
1653
1691
  */
@@ -1695,10 +1733,6 @@ export interface CreateServiceActionInput {
1695
1733
  * <ul>
1696
1734
  * <li>
1697
1735
  * <p>
1698
- * <code>en</code> - English (default)</p>
1699
- * </li>
1700
- * <li>
1701
- * <p>
1702
1736
  * <code>jp</code> - Japanese</p>
1703
1737
  * </li>
1704
1738
  * <li>
@@ -1816,10 +1850,6 @@ export interface DeleteConstraintInput {
1816
1850
  * <ul>
1817
1851
  * <li>
1818
1852
  * <p>
1819
- * <code>en</code> - English (default)</p>
1820
- * </li>
1821
- * <li>
1822
- * <p>
1823
1853
  * <code>jp</code> - Japanese</p>
1824
1854
  * </li>
1825
1855
  * <li>
@@ -1848,10 +1878,6 @@ export interface DeletePortfolioInput {
1848
1878
  * <ul>
1849
1879
  * <li>
1850
1880
  * <p>
1851
- * <code>en</code> - English (default)</p>
1852
- * </li>
1853
- * <li>
1854
- * <p>
1855
1881
  * <code>jp</code> - Japanese</p>
1856
1882
  * </li>
1857
1883
  * <li>
@@ -1893,10 +1919,6 @@ export interface DeletePortfolioShareInput {
1893
1919
  * <ul>
1894
1920
  * <li>
1895
1921
  * <p>
1896
- * <code>en</code> - English (default)</p>
1897
- * </li>
1898
- * <li>
1899
- * <p>
1900
1922
  * <code>jp</code> - Japanese</p>
1901
1923
  * </li>
1902
1924
  * <li>
@@ -1937,10 +1959,6 @@ export interface DeleteProductInput {
1937
1959
  * <ul>
1938
1960
  * <li>
1939
1961
  * <p>
1940
- * <code>en</code> - English (default)</p>
1941
- * </li>
1942
- * <li>
1943
- * <p>
1944
1962
  * <code>jp</code> - Japanese</p>
1945
1963
  * </li>
1946
1964
  * <li>
@@ -1969,10 +1987,6 @@ export interface DeleteProvisionedProductPlanInput {
1969
1987
  * <ul>
1970
1988
  * <li>
1971
1989
  * <p>
1972
- * <code>en</code> - English (default)</p>
1973
- * </li>
1974
- * <li>
1975
- * <p>
1976
1990
  * <code>jp</code> - Japanese</p>
1977
1991
  * </li>
1978
1992
  * <li>
@@ -2006,10 +2020,6 @@ export interface DeleteProvisioningArtifactInput {
2006
2020
  * <ul>
2007
2021
  * <li>
2008
2022
  * <p>
2009
- * <code>en</code> - English (default)</p>
2010
- * </li>
2011
- * <li>
2012
- * <p>
2013
2023
  * <code>jp</code> - Japanese</p>
2014
2024
  * </li>
2015
2025
  * <li>
@@ -2046,10 +2056,6 @@ export interface DeleteServiceActionInput {
2046
2056
  * <ul>
2047
2057
  * <li>
2048
2058
  * <p>
2049
- * <code>en</code> - English (default)</p>
2050
- * </li>
2051
- * <li>
2052
- * <p>
2053
2059
  * <code>jp</code> - Japanese</p>
2054
2060
  * </li>
2055
2061
  * <li>
@@ -2088,10 +2094,6 @@ export interface DescribeConstraintInput {
2088
2094
  * <ul>
2089
2095
  * <li>
2090
2096
  * <p>
2091
- * <code>en</code> - English (default)</p>
2092
- * </li>
2093
- * <li>
2094
- * <p>
2095
2097
  * <code>jp</code> - Japanese</p>
2096
2098
  * </li>
2097
2099
  * <li>
@@ -2132,10 +2134,6 @@ export interface DescribeCopyProductStatusInput {
2132
2134
  * <ul>
2133
2135
  * <li>
2134
2136
  * <p>
2135
- * <code>en</code> - English (default)</p>
2136
- * </li>
2137
- * <li>
2138
- * <p>
2139
2137
  * <code>jp</code> - Japanese</p>
2140
2138
  * </li>
2141
2139
  * <li>
@@ -2152,12 +2150,17 @@ export interface DescribeCopyProductStatusInput {
2152
2150
  }
2153
2151
  /**
2154
2152
  * @public
2153
+ * @enum
2155
2154
  */
2156
- export declare enum CopyProductStatus {
2157
- FAILED = "FAILED",
2158
- IN_PROGRESS = "IN_PROGRESS",
2159
- SUCCEEDED = "SUCCEEDED"
2160
- }
2155
+ export declare const CopyProductStatus: {
2156
+ readonly FAILED: "FAILED";
2157
+ readonly IN_PROGRESS: "IN_PROGRESS";
2158
+ readonly SUCCEEDED: "SUCCEEDED";
2159
+ };
2160
+ /**
2161
+ * @public
2162
+ */
2163
+ export type CopyProductStatus = (typeof CopyProductStatus)[keyof typeof CopyProductStatus];
2161
2164
  /**
2162
2165
  * @public
2163
2166
  */
@@ -2184,10 +2187,6 @@ export interface DescribePortfolioInput {
2184
2187
  * <ul>
2185
2188
  * <li>
2186
2189
  * <p>
2187
- * <code>en</code> - English (default)</p>
2188
- * </li>
2189
- * <li>
2190
- * <p>
2191
2190
  * <code>jp</code> - Japanese</p>
2192
2191
  * </li>
2193
2192
  * <li>
@@ -2235,13 +2234,18 @@ export interface DescribePortfolioOutput {
2235
2234
  }
2236
2235
  /**
2237
2236
  * @public
2237
+ * @enum
2238
2238
  */
2239
- export declare enum DescribePortfolioShareType {
2240
- ACCOUNT = "ACCOUNT",
2241
- ORGANIZATION = "ORGANIZATION",
2242
- ORGANIZATIONAL_UNIT = "ORGANIZATIONAL_UNIT",
2243
- ORGANIZATION_MEMBER_ACCOUNT = "ORGANIZATION_MEMBER_ACCOUNT"
2244
- }
2239
+ export declare const DescribePortfolioShareType: {
2240
+ readonly ACCOUNT: "ACCOUNT";
2241
+ readonly ORGANIZATION: "ORGANIZATION";
2242
+ readonly ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT";
2243
+ readonly ORGANIZATION_MEMBER_ACCOUNT: "ORGANIZATION_MEMBER_ACCOUNT";
2244
+ };
2245
+ /**
2246
+ * @public
2247
+ */
2248
+ export type DescribePortfolioShareType = (typeof DescribePortfolioShareType)[keyof typeof DescribePortfolioShareType];
2245
2249
  /**
2246
2250
  * @public
2247
2251
  */
@@ -2354,14 +2358,19 @@ export interface ShareDetails {
2354
2358
  }
2355
2359
  /**
2356
2360
  * @public
2361
+ * @enum
2357
2362
  */
2358
- export declare enum ShareStatus {
2359
- COMPLETED = "COMPLETED",
2360
- COMPLETED_WITH_ERRORS = "COMPLETED_WITH_ERRORS",
2361
- ERROR = "ERROR",
2362
- IN_PROGRESS = "IN_PROGRESS",
2363
- NOT_STARTED = "NOT_STARTED"
2364
- }
2363
+ export declare const ShareStatus: {
2364
+ readonly COMPLETED: "COMPLETED";
2365
+ readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
2366
+ readonly ERROR: "ERROR";
2367
+ readonly IN_PROGRESS: "IN_PROGRESS";
2368
+ readonly NOT_STARTED: "NOT_STARTED";
2369
+ };
2370
+ /**
2371
+ * @public
2372
+ */
2373
+ export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
2365
2374
  /**
2366
2375
  * @public
2367
2376
  */
@@ -2396,10 +2405,6 @@ export interface DescribeProductInput {
2396
2405
  * <ul>
2397
2406
  * <li>
2398
2407
  * <p>
2399
- * <code>en</code> - English (default)</p>
2400
- * </li>
2401
- * <li>
2402
- * <p>
2403
2408
  * <code>jp</code> - Japanese</p>
2404
2409
  * </li>
2405
2410
  * <li>
@@ -2488,10 +2493,6 @@ export interface DescribeProductAsAdminInput {
2488
2493
  * <ul>
2489
2494
  * <li>
2490
2495
  * <p>
2491
- * <code>en</code> - English (default)</p>
2492
- * </li>
2493
- * <li>
2494
- * <p>
2495
2496
  * <code>jp</code> - Japanese</p>
2496
2497
  * </li>
2497
2498
  * <li>
@@ -2579,10 +2580,6 @@ export interface DescribeProductViewInput {
2579
2580
  * <ul>
2580
2581
  * <li>
2581
2582
  * <p>
2582
- * <code>en</code> - English (default)</p>
2583
- * </li>
2584
- * <li>
2585
- * <p>
2586
2583
  * <code>jp</code> - Japanese</p>
2587
2584
  * </li>
2588
2585
  * <li>
@@ -2629,10 +2626,6 @@ export interface DescribeProvisionedProductInput {
2629
2626
  * <ul>
2630
2627
  * <li>
2631
2628
  * <p>
2632
- * <code>en</code> - English (default)</p>
2633
- * </li>
2634
- * <li>
2635
- * <p>
2636
2629
  * <code>jp</code> - Japanese</p>
2637
2630
  * </li>
2638
2631
  * <li>
@@ -2665,14 +2658,19 @@ export interface CloudWatchDashboard {
2665
2658
  }
2666
2659
  /**
2667
2660
  * @public
2661
+ * @enum
2668
2662
  */
2669
- export declare enum ProvisionedProductStatus {
2670
- AVAILABLE = "AVAILABLE",
2671
- ERROR = "ERROR",
2672
- PLAN_IN_PROGRESS = "PLAN_IN_PROGRESS",
2673
- TAINTED = "TAINTED",
2674
- UNDER_CHANGE = "UNDER_CHANGE"
2675
- }
2663
+ export declare const ProvisionedProductStatus: {
2664
+ readonly AVAILABLE: "AVAILABLE";
2665
+ readonly ERROR: "ERROR";
2666
+ readonly PLAN_IN_PROGRESS: "PLAN_IN_PROGRESS";
2667
+ readonly TAINTED: "TAINTED";
2668
+ readonly UNDER_CHANGE: "UNDER_CHANGE";
2669
+ };
2670
+ /**
2671
+ * @public
2672
+ */
2673
+ export type ProvisionedProductStatus = (typeof ProvisionedProductStatus)[keyof typeof ProvisionedProductStatus];
2676
2674
  /**
2677
2675
  * @public
2678
2676
  * <p>Information about a provisioned product.</p>
@@ -2830,10 +2828,6 @@ export interface DescribeProvisionedProductPlanInput {
2830
2828
  * <ul>
2831
2829
  * <li>
2832
2830
  * <p>
2833
- * <code>en</code> - English (default)</p>
2834
- * </li>
2835
- * <li>
2836
- * <p>
2837
2831
  * <code>jp</code> - Japanese</p>
2838
2832
  * </li>
2839
2833
  * <li>
@@ -2858,15 +2852,20 @@ export interface DescribeProvisionedProductPlanInput {
2858
2852
  }
2859
2853
  /**
2860
2854
  * @public
2855
+ * @enum
2861
2856
  */
2862
- export declare enum ProvisionedProductPlanStatus {
2863
- CREATE_FAILED = "CREATE_FAILED",
2864
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
2865
- CREATE_SUCCESS = "CREATE_SUCCESS",
2866
- EXECUTE_FAILED = "EXECUTE_FAILED",
2867
- EXECUTE_IN_PROGRESS = "EXECUTE_IN_PROGRESS",
2868
- EXECUTE_SUCCESS = "EXECUTE_SUCCESS"
2869
- }
2857
+ export declare const ProvisionedProductPlanStatus: {
2858
+ readonly CREATE_FAILED: "CREATE_FAILED";
2859
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
2860
+ readonly CREATE_SUCCESS: "CREATE_SUCCESS";
2861
+ readonly EXECUTE_FAILED: "EXECUTE_FAILED";
2862
+ readonly EXECUTE_IN_PROGRESS: "EXECUTE_IN_PROGRESS";
2863
+ readonly EXECUTE_SUCCESS: "EXECUTE_SUCCESS";
2864
+ };
2865
+ /**
2866
+ * @public
2867
+ */
2868
+ export type ProvisionedProductPlanStatus = (typeof ProvisionedProductPlanStatus)[keyof typeof ProvisionedProductPlanStatus];
2870
2869
  /**
2871
2870
  * @public
2872
2871
  * <p>Information about a plan.</p>
@@ -2939,38 +2938,58 @@ export interface ProvisionedProductPlanDetails {
2939
2938
  }
2940
2939
  /**
2941
2940
  * @public
2941
+ * @enum
2942
2942
  */
2943
- export declare enum ChangeAction {
2944
- ADD = "ADD",
2945
- MODIFY = "MODIFY",
2946
- REMOVE = "REMOVE"
2947
- }
2943
+ export declare const ChangeAction: {
2944
+ readonly ADD: "ADD";
2945
+ readonly MODIFY: "MODIFY";
2946
+ readonly REMOVE: "REMOVE";
2947
+ };
2948
2948
  /**
2949
2949
  * @public
2950
2950
  */
2951
- export declare enum EvaluationType {
2952
- DYNAMIC = "DYNAMIC",
2953
- STATIC = "STATIC"
2954
- }
2951
+ export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
2955
2952
  /**
2956
2953
  * @public
2954
+ * @enum
2957
2955
  */
2958
- export declare enum ResourceAttribute {
2959
- CREATIONPOLICY = "CREATIONPOLICY",
2960
- DELETIONPOLICY = "DELETIONPOLICY",
2961
- METADATA = "METADATA",
2962
- PROPERTIES = "PROPERTIES",
2963
- TAGS = "TAGS",
2964
- UPDATEPOLICY = "UPDATEPOLICY"
2965
- }
2956
+ export declare const EvaluationType: {
2957
+ readonly DYNAMIC: "DYNAMIC";
2958
+ readonly STATIC: "STATIC";
2959
+ };
2966
2960
  /**
2967
2961
  * @public
2968
2962
  */
2969
- export declare enum RequiresRecreation {
2970
- ALWAYS = "ALWAYS",
2971
- CONDITIONALLY = "CONDITIONALLY",
2972
- NEVER = "NEVER"
2973
- }
2963
+ export type EvaluationType = (typeof EvaluationType)[keyof typeof EvaluationType];
2964
+ /**
2965
+ * @public
2966
+ * @enum
2967
+ */
2968
+ export declare const ResourceAttribute: {
2969
+ readonly CREATIONPOLICY: "CREATIONPOLICY";
2970
+ readonly DELETIONPOLICY: "DELETIONPOLICY";
2971
+ readonly METADATA: "METADATA";
2972
+ readonly PROPERTIES: "PROPERTIES";
2973
+ readonly TAGS: "TAGS";
2974
+ readonly UPDATEPOLICY: "UPDATEPOLICY";
2975
+ };
2976
+ /**
2977
+ * @public
2978
+ */
2979
+ export type ResourceAttribute = (typeof ResourceAttribute)[keyof typeof ResourceAttribute];
2980
+ /**
2981
+ * @public
2982
+ * @enum
2983
+ */
2984
+ export declare const RequiresRecreation: {
2985
+ readonly ALWAYS: "ALWAYS";
2986
+ readonly CONDITIONALLY: "CONDITIONALLY";
2987
+ readonly NEVER: "NEVER";
2988
+ };
2989
+ /**
2990
+ * @public
2991
+ */
2992
+ export type RequiresRecreation = (typeof RequiresRecreation)[keyof typeof RequiresRecreation];
2974
2993
  /**
2975
2994
  * @public
2976
2995
  * <p>Information about a change to a resource attribute.</p>
@@ -3012,12 +3031,17 @@ export interface ResourceChangeDetail {
3012
3031
  }
3013
3032
  /**
3014
3033
  * @public
3034
+ * @enum
3015
3035
  */
3016
- export declare enum Replacement {
3017
- CONDITIONAL = "CONDITIONAL",
3018
- FALSE = "FALSE",
3019
- TRUE = "TRUE"
3020
- }
3036
+ export declare const Replacement: {
3037
+ readonly CONDITIONAL: "CONDITIONAL";
3038
+ readonly FALSE: "FALSE";
3039
+ readonly TRUE: "TRUE";
3040
+ };
3041
+ /**
3042
+ * @public
3043
+ */
3044
+ export type Replacement = (typeof Replacement)[keyof typeof Replacement];
3021
3045
  /**
3022
3046
  * @public
3023
3047
  * <p>Information about a resource change that will occur when a plan is executed.</p>
@@ -3079,10 +3103,6 @@ export interface DescribeProvisioningArtifactInput {
3079
3103
  * <ul>
3080
3104
  * <li>
3081
3105
  * <p>
3082
- * <code>en</code> - English (default)</p>
3083
- * </li>
3084
- * <li>
3085
- * <p>
3086
3106
  * <code>jp</code> - Japanese</p>
3087
3107
  * </li>
3088
3108
  * <li>
@@ -3139,10 +3159,6 @@ export interface DescribeProvisioningParametersInput {
3139
3159
  * <ul>
3140
3160
  * <li>
3141
3161
  * <p>
3142
- * <code>en</code> - English (default)</p>
3143
- * </li>
3144
- * <li>
3145
- * <p>
3146
3162
  * <code>jp</code> - Japanese</p>
3147
3163
  * </li>
3148
3164
  * <li>
@@ -3389,10 +3405,6 @@ export interface DescribeRecordInput {
3389
3405
  * <ul>
3390
3406
  * <li>
3391
3407
  * <p>
3392
- * <code>en</code> - English (default)</p>
3393
- * </li>
3394
- * <li>
3395
- * <p>
3396
3408
  * <code>jp</code> - Japanese</p>
3397
3409
  * </li>
3398
3410
  * <li>
@@ -3446,14 +3458,19 @@ export interface RecordTag {
3446
3458
  }
3447
3459
  /**
3448
3460
  * @public
3461
+ * @enum
3449
3462
  */
3450
- export declare enum RecordStatus {
3451
- CREATED = "CREATED",
3452
- FAILED = "FAILED",
3453
- IN_PROGRESS = "IN_PROGRESS",
3454
- IN_PROGRESS_IN_ERROR = "IN_PROGRESS_IN_ERROR",
3455
- SUCCEEDED = "SUCCEEDED"
3456
- }
3463
+ export declare const RecordStatus: {
3464
+ readonly CREATED: "CREATED";
3465
+ readonly FAILED: "FAILED";
3466
+ readonly IN_PROGRESS: "IN_PROGRESS";
3467
+ readonly IN_PROGRESS_IN_ERROR: "IN_PROGRESS_IN_ERROR";
3468
+ readonly SUCCEEDED: "SUCCEEDED";
3469
+ };
3470
+ /**
3471
+ * @public
3472
+ */
3473
+ export type RecordStatus = (typeof RecordStatus)[keyof typeof RecordStatus];
3457
3474
  /**
3458
3475
  * @public
3459
3476
  * <p>Information about a request operation.</p>
@@ -3607,10 +3624,6 @@ export interface DescribeServiceActionInput {
3607
3624
  * <ul>
3608
3625
  * <li>
3609
3626
  * <p>
3610
- * <code>en</code> - English (default)</p>
3611
- * </li>
3612
- * <li>
3613
- * <p>
3614
3627
  * <code>jp</code> - Japanese</p>
3615
3628
  * </li>
3616
3629
  * <li>
@@ -3647,10 +3660,6 @@ export interface DescribeServiceActionExecutionParametersInput {
3647
3660
  * <ul>
3648
3661
  * <li>
3649
3662
  * <p>
3650
- * <code>en</code> - English (default)</p>
3651
- * </li>
3652
- * <li>
3653
- * <p>
3654
3663
  * <code>jp</code> - Japanese</p>
3655
3664
  * </li>
3656
3665
  * <li>
@@ -3743,10 +3752,6 @@ export interface DisassociatePrincipalFromPortfolioInput {
3743
3752
  * <ul>
3744
3753
  * <li>
3745
3754
  * <p>
3746
- * <code>en</code> - English (default)</p>
3747
- * </li>
3748
- * <li>
3749
- * <p>
3750
3755
  * <code>jp</code> - Japanese</p>
3751
3756
  * </li>
3752
3757
  * <li>
@@ -3761,7 +3766,7 @@ export interface DisassociatePrincipalFromPortfolioInput {
3761
3766
  */
3762
3767
  PortfolioId: string | undefined;
3763
3768
  /**
3764
- * <p>The ARN of the principal (IAM user, role, or group). This field allows an ARN with no <code>accountID</code> if
3769
+ * <p>The ARN of the principal (user, role, or group). This field allows an ARN with no <code>accountID</code> if
3765
3770
  * <code>PrincipalType</code> is <code>IAM_PATTERN</code>.</p>
3766
3771
  */
3767
3772
  PrincipalARN: string | undefined;
@@ -3785,10 +3790,6 @@ export interface DisassociateProductFromPortfolioInput {
3785
3790
  * <ul>
3786
3791
  * <li>
3787
3792
  * <p>
3788
- * <code>en</code> - English (default)</p>
3789
- * </li>
3790
- * <li>
3791
- * <p>
3792
3793
  * <code>jp</code> - Japanese</p>
3793
3794
  * </li>
3794
3795
  * <li>
@@ -3833,10 +3834,6 @@ export interface DisassociateServiceActionFromProvisioningArtifactInput {
3833
3834
  * <ul>
3834
3835
  * <li>
3835
3836
  * <p>
3836
- * <code>en</code> - English (default)</p>
3837
- * </li>
3838
- * <li>
3839
- * <p>
3840
3837
  * <code>jp</code> - Japanese</p>
3841
3838
  * </li>
3842
3839
  * <li>
@@ -3889,10 +3886,6 @@ export interface ExecuteProvisionedProductPlanInput {
3889
3886
  * <ul>
3890
3887
  * <li>
3891
3888
  * <p>
3892
- * <code>en</code> - English (default)</p>
3893
- * </li>
3894
- * <li>
3895
- * <p>
3896
3889
  * <code>jp</code> - Japanese</p>
3897
3890
  * </li>
3898
3891
  * <li>
@@ -3942,10 +3935,6 @@ export interface ExecuteProvisionedProductServiceActionInput {
3942
3935
  * <ul>
3943
3936
  * <li>
3944
3937
  * <p>
3945
- * <code>en</code> - English (default)</p>
3946
- * </li>
3947
- * <li>
3948
- * <p>
3949
3938
  * <code>jp</code> - Japanese</p>
3950
3939
  * </li>
3951
3940
  * <li>
@@ -3994,10 +3983,6 @@ export interface GetProvisionedProductOutputsInput {
3994
3983
  * <ul>
3995
3984
  * <li>
3996
3985
  * <p>
3997
- * <code>en</code> - English (default)</p>
3998
- * </li>
3999
- * <li>
4000
- * <p>
4001
3986
  * <code>jp</code> - Japanese</p>
4002
3987
  * </li>
4003
3988
  * <li>
@@ -4051,10 +4036,6 @@ export interface ImportAsProvisionedProductInput {
4051
4036
  * <ul>
4052
4037
  * <li>
4053
4038
  * <p>
4054
- * <code>en</code> - English (default)</p>
4055
- * </li>
4056
- * <li>
4057
- * <p>
4058
4039
  * <code>jp</code> - Japanese</p>
4059
4040
  * </li>
4060
4041
  * <li>
@@ -4105,10 +4086,6 @@ export interface ListAcceptedPortfolioSharesInput {
4105
4086
  * <ul>
4106
4087
  * <li>
4107
4088
  * <p>
4108
- * <code>en</code> - English (default)</p>
4109
- * </li>
4110
- * <li>
4111
- * <p>
4112
4089
  * <code>jp</code> - Japanese</p>
4113
4090
  * </li>
4114
4091
  * <li>
@@ -4168,10 +4145,6 @@ export interface ListBudgetsForResourceInput {
4168
4145
  * <ul>
4169
4146
  * <li>
4170
4147
  * <p>
4171
- * <code>en</code> - English (default)</p>
4172
- * </li>
4173
- * <li>
4174
- * <p>
4175
4148
  * <code>jp</code> - Japanese</p>
4176
4149
  * </li>
4177
4150
  * <li>
@@ -4216,10 +4189,6 @@ export interface ListConstraintsForPortfolioInput {
4216
4189
  * <ul>
4217
4190
  * <li>
4218
4191
  * <p>
4219
- * <code>en</code> - English (default)</p>
4220
- * </li>
4221
- * <li>
4222
- * <p>
4223
4192
  * <code>jp</code> - Japanese</p>
4224
4193
  * </li>
4225
4194
  * <li>
@@ -4268,10 +4237,6 @@ export interface ListLaunchPathsInput {
4268
4237
  * <ul>
4269
4238
  * <li>
4270
4239
  * <p>
4271
- * <code>en</code> - English (default)</p>
4272
- * </li>
4273
- * <li>
4274
- * <p>
4275
4240
  * <code>jp</code> - Japanese</p>
4276
4241
  * </li>
4277
4242
  * <li>
@@ -4338,10 +4303,6 @@ export interface ListOrganizationPortfolioAccessInput {
4338
4303
  * <ul>
4339
4304
  * <li>
4340
4305
  * <p>
4341
- * <code>en</code> - English (default)</p>
4342
- * </li>
4343
- * <li>
4344
- * <p>
4345
4306
  * <code>jp</code> - Japanese</p>
4346
4307
  * </li>
4347
4308
  * <li>
@@ -4404,10 +4365,6 @@ export interface ListPortfolioAccessInput {
4404
4365
  * <ul>
4405
4366
  * <li>
4406
4367
  * <p>
4407
- * <code>en</code> - English (default)</p>
4408
- * </li>
4409
- * <li>
4410
- * <p>
4411
4368
  * <code>jp</code> - Japanese</p>
4412
4369
  * </li>
4413
4370
  * <li>
@@ -4456,10 +4413,6 @@ export interface ListPortfoliosInput {
4456
4413
  * <ul>
4457
4414
  * <li>
4458
4415
  * <p>
4459
- * <code>en</code> - English (default)</p>
4460
- * </li>
4461
- * <li>
4462
- * <p>
4463
4416
  * <code>jp</code> - Japanese</p>
4464
4417
  * </li>
4465
4418
  * <li>
@@ -4500,10 +4453,6 @@ export interface ListPortfoliosForProductInput {
4500
4453
  * <ul>
4501
4454
  * <li>
4502
4455
  * <p>
4503
- * <code>en</code> - English (default)</p>
4504
- * </li>
4505
- * <li>
4506
- * <p>
4507
4456
  * <code>jp</code> - Japanese</p>
4508
4457
  * </li>
4509
4458
  * <li>
@@ -4548,10 +4497,6 @@ export interface ListPrincipalsForPortfolioInput {
4548
4497
  * <ul>
4549
4498
  * <li>
4550
4499
  * <p>
4551
- * <code>en</code> - English (default)</p>
4552
- * </li>
4553
- * <li>
4554
- * <p>
4555
4500
  * <code>jp</code> - Japanese</p>
4556
4501
  * </li>
4557
4502
  * <li>
@@ -4580,7 +4525,7 @@ export interface ListPrincipalsForPortfolioInput {
4580
4525
  */
4581
4526
  export interface Principal {
4582
4527
  /**
4583
- * <p>The ARN of the principal (IAM user, role, or group). This field allows for an ARN with no <code>accountID</code> if the
4528
+ * <p>The ARN of the principal (user, role, or group). This field allows for an ARN with no <code>accountID</code> if the
4584
4529
  * <code>PrincipalType</code> is an <code>IAM_PATTERN</code>. </p>
4585
4530
  */
4586
4531
  PrincipalARN?: string;
@@ -4612,10 +4557,6 @@ export interface ListProvisionedProductPlansInput {
4612
4557
  * <ul>
4613
4558
  * <li>
4614
4559
  * <p>
4615
- * <code>en</code> - English (default)</p>
4616
- * </li>
4617
- * <li>
4618
- * <p>
4619
4560
  * <code>jp</code> - Japanese</p>
4620
4561
  * </li>
4621
4562
  * <li>
@@ -4694,10 +4635,6 @@ export interface ListProvisioningArtifactsInput {
4694
4635
  * <ul>
4695
4636
  * <li>
4696
4637
  * <p>
4697
- * <code>en</code> - English (default)</p>
4698
- * </li>
4699
- * <li>
4700
- * <p>
4701
4638
  * <code>jp</code> - Japanese</p>
4702
4639
  * </li>
4703
4640
  * <li>
@@ -4746,10 +4683,6 @@ export interface ListProvisioningArtifactsForServiceActionInput {
4746
4683
  * <ul>
4747
4684
  * <li>
4748
4685
  * <p>
4749
- * <code>en</code> - English (default)</p>
4750
- * </li>
4751
- * <li>
4752
- * <p>
4753
4686
  * <code>jp</code> - Japanese</p>
4754
4687
  * </li>
4755
4688
  * <li>
@@ -4820,10 +4753,6 @@ export interface ListRecordHistoryInput {
4820
4753
  * <ul>
4821
4754
  * <li>
4822
4755
  * <p>
4823
- * <code>en</code> - English (default)</p>
4824
- * </li>
4825
- * <li>
4826
- * <p>
4827
4756
  * <code>jp</code> - Japanese</p>
4828
4757
  * </li>
4829
4758
  * <li>
@@ -4944,10 +4873,6 @@ export interface ListServiceActionsInput {
4944
4873
  * <ul>
4945
4874
  * <li>
4946
4875
  * <p>
4947
- * <code>en</code> - English (default)</p>
4948
- * </li>
4949
- * <li>
4950
- * <p>
4951
4876
  * <code>jp</code> - Japanese</p>
4952
4877
  * </li>
4953
4878
  * <li>
@@ -5004,10 +4929,6 @@ export interface ListServiceActionsForProvisioningArtifactInput {
5004
4929
  * <ul>
5005
4930
  * <li>
5006
4931
  * <p>
5007
- * <code>en</code> - English (default)</p>
5008
- * </li>
5009
- * <li>
5010
- * <p>
5011
4932
  * <code>jp</code> - Japanese</p>
5012
4933
  * </li>
5013
4934
  * <li>
@@ -5040,10 +4961,6 @@ export interface ListStackInstancesForProvisionedProductInput {
5040
4961
  * <ul>
5041
4962
  * <li>
5042
4963
  * <p>
5043
- * <code>en</code> - English (default)</p>
5044
- * </li>
5045
- * <li>
5046
- * <p>
5047
4964
  * <code>jp</code> - Japanese</p>
5048
4965
  * </li>
5049
4966
  * <li>
@@ -5068,12 +4985,17 @@ export interface ListStackInstancesForProvisionedProductInput {
5068
4985
  }
5069
4986
  /**
5070
4987
  * @public
4988
+ * @enum
5071
4989
  */
5072
- export declare enum StackInstanceStatus {
5073
- CURRENT = "CURRENT",
5074
- INOPERABLE = "INOPERABLE",
5075
- OUTDATED = "OUTDATED"
5076
- }
4990
+ export declare const StackInstanceStatus: {
4991
+ readonly CURRENT: "CURRENT";
4992
+ readonly INOPERABLE: "INOPERABLE";
4993
+ readonly OUTDATED: "OUTDATED";
4994
+ };
4995
+ /**
4996
+ * @public
4997
+ */
4998
+ export type StackInstanceStatus = (typeof StackInstanceStatus)[keyof typeof StackInstanceStatus];
5077
4999
  /**
5078
5000
  * @public
5079
5001
  * <p>An CloudFormation stack, in a specific account and Region, that's part of a stack set operation. A stack instance is a reference to an attempted or actual stack in a given account within a given Region. A stack instance can exist without a stack—for example, if the stack couldn't be created for some reason. A stack instance is associated with only one stack set. Each stack instance contains the ID of its associated stack set, as well as the ID of the actual stack and the stack status. </p>
@@ -5169,6 +5091,227 @@ export interface ListTagOptionsOutput {
5169
5091
  */
5170
5092
  PageToken?: string;
5171
5093
  }
5094
+ /**
5095
+ * @public
5096
+ * <p>
5097
+ * The unique key-value pair
5098
+ * for a tag
5099
+ * that identifies provisioned product resources.
5100
+ * </p>
5101
+ */
5102
+ export interface UniqueTagResourceIdentifier {
5103
+ /**
5104
+ * <p>
5105
+ * A unique key
5106
+ * that's attached
5107
+ * to a resource.
5108
+ * </p>
5109
+ */
5110
+ Key?: string;
5111
+ /**
5112
+ * <p>
5113
+ * A unique value
5114
+ * that's attached
5115
+ * to a resource.
5116
+ * </p>
5117
+ */
5118
+ Value?: string;
5119
+ }
5120
+ /**
5121
+ * @public
5122
+ * <p>
5123
+ * The ID
5124
+ * for the provisioned product resources
5125
+ * that are part
5126
+ * of a resource group.
5127
+ * </p>
5128
+ */
5129
+ export interface EngineWorkflowResourceIdentifier {
5130
+ /**
5131
+ * <p>
5132
+ * The unique key-value pair
5133
+ * for a tag
5134
+ * that identifies provisioned product resources.
5135
+ * </p>
5136
+ */
5137
+ UniqueTag?: UniqueTagResourceIdentifier;
5138
+ }
5139
+ /**
5140
+ * @public
5141
+ * @enum
5142
+ */
5143
+ export declare const EngineWorkflowStatus: {
5144
+ readonly FAILED: "FAILED";
5145
+ readonly SUCCEEDED: "SUCCEEDED";
5146
+ };
5147
+ /**
5148
+ * @public
5149
+ */
5150
+ export type EngineWorkflowStatus = (typeof EngineWorkflowStatus)[keyof typeof EngineWorkflowStatus];
5151
+ /**
5152
+ * @public
5153
+ */
5154
+ export interface NotifyProvisionProductEngineWorkflowResultInput {
5155
+ /**
5156
+ * <p>
5157
+ * The encrypted contents
5158
+ * of the provisioning engine execution payload
5159
+ * that Service Catalog sends
5160
+ * after the Terraform product provisioning workflow starts.
5161
+ * </p>
5162
+ */
5163
+ WorkflowToken: string | undefined;
5164
+ /**
5165
+ * <p>
5166
+ * The identifier
5167
+ * of the record.
5168
+ * </p>
5169
+ */
5170
+ RecordId: string | undefined;
5171
+ /**
5172
+ * <p>
5173
+ * The status
5174
+ * of the provisioning engine execution.
5175
+ * </p>
5176
+ */
5177
+ Status: EngineWorkflowStatus | string | undefined;
5178
+ /**
5179
+ * <p>
5180
+ * The reason
5181
+ * why the provisioning engine execution failed.
5182
+ * </p>
5183
+ */
5184
+ FailureReason?: string;
5185
+ /**
5186
+ * <p>
5187
+ * The ID
5188
+ * for the provisioned product resources
5189
+ * that are part
5190
+ * of a resource group.
5191
+ * </p>
5192
+ */
5193
+ ResourceIdentifier?: EngineWorkflowResourceIdentifier;
5194
+ /**
5195
+ * <p>
5196
+ * The output
5197
+ * of the provisioning engine execution.
5198
+ * </p>
5199
+ */
5200
+ Outputs?: RecordOutput[];
5201
+ /**
5202
+ * <p>
5203
+ * The idempotency token
5204
+ * that identifies the provisioning engine execution.
5205
+ * </p>
5206
+ */
5207
+ IdempotencyToken?: string;
5208
+ }
5209
+ /**
5210
+ * @public
5211
+ */
5212
+ export interface NotifyProvisionProductEngineWorkflowResultOutput {
5213
+ }
5214
+ /**
5215
+ * @public
5216
+ */
5217
+ export interface NotifyTerminateProvisionedProductEngineWorkflowResultInput {
5218
+ /**
5219
+ * <p>
5220
+ * The encrypted contents
5221
+ * of the terminate engine execution payload
5222
+ * that Service Catalog sends
5223
+ * after the Terraform product terminate workflow starts.
5224
+ * </p>
5225
+ */
5226
+ WorkflowToken: string | undefined;
5227
+ /**
5228
+ * <p>
5229
+ * The identifier
5230
+ * of the record.
5231
+ * </p>
5232
+ */
5233
+ RecordId: string | undefined;
5234
+ /**
5235
+ * <p>
5236
+ * The status
5237
+ * of the terminate engine execution.
5238
+ * </p>
5239
+ */
5240
+ Status: EngineWorkflowStatus | string | undefined;
5241
+ /**
5242
+ * <p>
5243
+ * The reason
5244
+ * why the terminate engine execution failed.
5245
+ * </p>
5246
+ */
5247
+ FailureReason?: string;
5248
+ /**
5249
+ * <p>
5250
+ * The idempotency token
5251
+ * that identifies the terminate engine execution.
5252
+ * </p>
5253
+ */
5254
+ IdempotencyToken?: string;
5255
+ }
5256
+ /**
5257
+ * @public
5258
+ */
5259
+ export interface NotifyTerminateProvisionedProductEngineWorkflowResultOutput {
5260
+ }
5261
+ /**
5262
+ * @public
5263
+ */
5264
+ export interface NotifyUpdateProvisionedProductEngineWorkflowResultInput {
5265
+ /**
5266
+ * <p>
5267
+ * The encrypted contents
5268
+ * of the update engine execution payload
5269
+ * that Service Catalog sends
5270
+ * after the Terraform product update workflow starts.
5271
+ * </p>
5272
+ */
5273
+ WorkflowToken: string | undefined;
5274
+ /**
5275
+ * <p>
5276
+ * The identifier
5277
+ * of the record.
5278
+ * </p>
5279
+ */
5280
+ RecordId: string | undefined;
5281
+ /**
5282
+ * <p>
5283
+ * The status
5284
+ * of the update engine execution.
5285
+ * </p>
5286
+ */
5287
+ Status: EngineWorkflowStatus | string | undefined;
5288
+ /**
5289
+ * <p>
5290
+ * The reason
5291
+ * why the update engine execution failed.
5292
+ * </p>
5293
+ */
5294
+ FailureReason?: string;
5295
+ /**
5296
+ * <p>
5297
+ * The output
5298
+ * of the update engine execution.
5299
+ * </p>
5300
+ */
5301
+ Outputs?: RecordOutput[];
5302
+ /**
5303
+ * <p>
5304
+ * The idempotency token
5305
+ * that identifies the update engine execution.
5306
+ * </p>
5307
+ */
5308
+ IdempotencyToken?: string;
5309
+ }
5310
+ /**
5311
+ * @public
5312
+ */
5313
+ export interface NotifyUpdateProvisionedProductEngineWorkflowResultOutput {
5314
+ }
5172
5315
  /**
5173
5316
  * @public
5174
5317
  * <p>Information about a parameter used to provision a product.</p>
@@ -5250,10 +5393,6 @@ export interface ProvisionProductInput {
5250
5393
  * <ul>
5251
5394
  * <li>
5252
5395
  * <p>
5253
- * <code>en</code> - English (default)</p>
5254
- * </li>
5255
- * <li>
5256
- * <p>
5257
5396
  * <code>jp</code> - Japanese</p>
5258
5397
  * </li>
5259
5398
  * <li>
@@ -5335,10 +5474,6 @@ export interface RejectPortfolioShareInput {
5335
5474
  * <ul>
5336
5475
  * <li>
5337
5476
  * <p>
5338
- * <code>en</code> - English (default)</p>
5339
- * </li>
5340
- * <li>
5341
- * <p>
5342
5477
  * <code>jp</code> - Japanese</p>
5343
5478
  * </li>
5344
5479
  * <li>
@@ -5388,10 +5523,6 @@ export interface ScanProvisionedProductsInput {
5388
5523
  * <ul>
5389
5524
  * <li>
5390
5525
  * <p>
5391
- * <code>en</code> - English (default)</p>
5392
- * </li>
5393
- * <li>
5394
- * <p>
5395
5526
  * <code>jp</code> - Japanese</p>
5396
5527
  * </li>
5397
5528
  * <li>
@@ -5429,28 +5560,43 @@ export interface ScanProvisionedProductsOutput {
5429
5560
  }
5430
5561
  /**
5431
5562
  * @public
5563
+ * @enum
5432
5564
  */
5433
- export declare enum ProductViewFilterBy {
5434
- FullTextSearch = "FullTextSearch",
5435
- Owner = "Owner",
5436
- ProductType = "ProductType",
5437
- SourceProductId = "SourceProductId"
5438
- }
5565
+ export declare const ProductViewFilterBy: {
5566
+ readonly FullTextSearch: "FullTextSearch";
5567
+ readonly Owner: "Owner";
5568
+ readonly ProductType: "ProductType";
5569
+ readonly SourceProductId: "SourceProductId";
5570
+ };
5439
5571
  /**
5440
5572
  * @public
5441
5573
  */
5442
- export declare enum ProductViewSortBy {
5443
- CreationDate = "CreationDate",
5444
- Title = "Title",
5445
- VersionCount = "VersionCount"
5446
- }
5574
+ export type ProductViewFilterBy = (typeof ProductViewFilterBy)[keyof typeof ProductViewFilterBy];
5447
5575
  /**
5448
5576
  * @public
5577
+ * @enum
5449
5578
  */
5450
- export declare enum SortOrder {
5451
- ASCENDING = "ASCENDING",
5452
- DESCENDING = "DESCENDING"
5453
- }
5579
+ export declare const ProductViewSortBy: {
5580
+ readonly CreationDate: "CreationDate";
5581
+ readonly Title: "Title";
5582
+ readonly VersionCount: "VersionCount";
5583
+ };
5584
+ /**
5585
+ * @public
5586
+ */
5587
+ export type ProductViewSortBy = (typeof ProductViewSortBy)[keyof typeof ProductViewSortBy];
5588
+ /**
5589
+ * @public
5590
+ * @enum
5591
+ */
5592
+ export declare const SortOrder: {
5593
+ readonly ASCENDING: "ASCENDING";
5594
+ readonly DESCENDING: "DESCENDING";
5595
+ };
5596
+ /**
5597
+ * @public
5598
+ */
5599
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
5454
5600
  /**
5455
5601
  * @public
5456
5602
  */
@@ -5460,10 +5606,6 @@ export interface SearchProductsInput {
5460
5606
  * <ul>
5461
5607
  * <li>
5462
5608
  * <p>
5463
- * <code>en</code> - English (default)</p>
5464
- * </li>
5465
- * <li>
5466
- * <p>
5467
5609
  * <code>jp</code> - Japanese</p>
5468
5610
  * </li>
5469
5611
  * <li>
@@ -5529,10 +5671,15 @@ export interface SearchProductsOutput {
5529
5671
  }
5530
5672
  /**
5531
5673
  * @public
5674
+ * @enum
5532
5675
  */
5533
- export declare enum ProductSource {
5534
- ACCOUNT = "ACCOUNT"
5535
- }
5676
+ export declare const ProductSource: {
5677
+ readonly ACCOUNT: "ACCOUNT";
5678
+ };
5679
+ /**
5680
+ * @public
5681
+ */
5682
+ export type ProductSource = (typeof ProductSource)[keyof typeof ProductSource];
5536
5683
  /**
5537
5684
  * @public
5538
5685
  */
@@ -5542,10 +5689,6 @@ export interface SearchProductsAsAdminInput {
5542
5689
  * <ul>
5543
5690
  * <li>
5544
5691
  * <p>
5545
- * <code>en</code> - English (default)</p>
5546
- * </li>
5547
- * <li>
5548
- * <p>
5549
5692
  * <code>jp</code> - Japanese</p>
5550
5693
  * </li>
5551
5694
  * <li>
@@ -5600,10 +5743,15 @@ export interface SearchProductsAsAdminOutput {
5600
5743
  }
5601
5744
  /**
5602
5745
  * @public
5746
+ * @enum
5603
5747
  */
5604
- export declare enum ProvisionedProductViewFilterBy {
5605
- SearchQuery = "SearchQuery"
5606
- }
5748
+ export declare const ProvisionedProductViewFilterBy: {
5749
+ readonly SearchQuery: "SearchQuery";
5750
+ };
5751
+ /**
5752
+ * @public
5753
+ */
5754
+ export type ProvisionedProductViewFilterBy = (typeof ProvisionedProductViewFilterBy)[keyof typeof ProvisionedProductViewFilterBy];
5607
5755
  /**
5608
5756
  * @public
5609
5757
  */
@@ -5613,10 +5761,6 @@ export interface SearchProvisionedProductsInput {
5613
5761
  * <ul>
5614
5762
  * <li>
5615
5763
  * <p>
5616
- * <code>en</code> - English (default)</p>
5617
- * </li>
5618
- * <li>
5619
- * <p>
5620
5764
  * <code>jp</code> - Japanese</p>
5621
5765
  * </li>
5622
5766
  * <li>
@@ -5807,11 +5951,11 @@ export interface ProvisionedProductAttribute {
5807
5951
  */
5808
5952
  ProvisioningArtifactName?: string;
5809
5953
  /**
5810
- * <p>The Amazon Resource Name (ARN) of the IAM user.</p>
5954
+ * <p>The Amazon Resource Name (ARN) of the user.</p>
5811
5955
  */
5812
5956
  UserArn?: string;
5813
5957
  /**
5814
- * <p>The ARN of the IAM user in the session. This ARN might contain a session ID.</p>
5958
+ * <p>The ARN of the user in the session. This ARN might contain a session ID.</p>
5815
5959
  */
5816
5960
  UserArnSession?: string;
5817
5961
  }
@@ -5863,10 +6007,6 @@ export interface TerminateProvisionedProductInput {
5863
6007
  * <ul>
5864
6008
  * <li>
5865
6009
  * <p>
5866
- * <code>en</code> - English (default)</p>
5867
- * </li>
5868
- * <li>
5869
- * <p>
5870
6010
  * <code>jp</code> - Japanese</p>
5871
6011
  * </li>
5872
6012
  * <li>
@@ -5902,10 +6042,6 @@ export interface UpdateConstraintInput {
5902
6042
  * <ul>
5903
6043
  * <li>
5904
6044
  * <p>
5905
- * <code>en</code> - English (default)</p>
5906
- * </li>
5907
- * <li>
5908
- * <p>
5909
6045
  * <code>jp</code> - Japanese</p>
5910
6046
  * </li>
5911
6047
  * <li>
@@ -6005,10 +6141,6 @@ export interface UpdatePortfolioInput {
6005
6141
  * <ul>
6006
6142
  * <li>
6007
6143
  * <p>
6008
- * <code>en</code> - English (default)</p>
6009
- * </li>
6010
- * <li>
6011
- * <p>
6012
6144
  * <code>jp</code> - Japanese</p>
6013
6145
  * </li>
6014
6146
  * <li>
@@ -6065,10 +6197,6 @@ export interface UpdatePortfolioShareInput {
6065
6197
  * <ul>
6066
6198
  * <li>
6067
6199
  * <p>
6068
- * <code>en</code> - English (default)</p>
6069
- * </li>
6070
- * <li>
6071
- * <p>
6072
6200
  * <code>jp</code> - Japanese</p>
6073
6201
  * </li>
6074
6202
  * <li>
@@ -6125,10 +6253,6 @@ export interface UpdateProductInput {
6125
6253
  * <ul>
6126
6254
  * <li>
6127
6255
  * <p>
6128
- * <code>en</code> - English (default)</p>
6129
- * </li>
6130
- * <li>
6131
- * <p>
6132
6256
  * <code>jp</code> - Japanese</p>
6133
6257
  * </li>
6134
6258
  * <li>
@@ -6212,12 +6336,17 @@ export interface UpdateProductOutput {
6212
6336
  }
6213
6337
  /**
6214
6338
  * @public
6339
+ * @enum
6215
6340
  */
6216
- export declare enum StackSetOperationType {
6217
- CREATE = "CREATE",
6218
- DELETE = "DELETE",
6219
- UPDATE = "UPDATE"
6220
- }
6341
+ export declare const StackSetOperationType: {
6342
+ readonly CREATE: "CREATE";
6343
+ readonly DELETE: "DELETE";
6344
+ readonly UPDATE: "UPDATE";
6345
+ };
6346
+ /**
6347
+ * @public
6348
+ */
6349
+ export type StackSetOperationType = (typeof StackSetOperationType)[keyof typeof StackSetOperationType];
6221
6350
  /**
6222
6351
  * @public
6223
6352
  * <p>The user-defined preferences that will be applied when updating a provisioned product. Not all preferences are applicable to all provisioned product types.</p>
@@ -6295,10 +6424,6 @@ export interface UpdateProvisionedProductInput {
6295
6424
  * <ul>
6296
6425
  * <li>
6297
6426
  * <p>
6298
- * <code>en</code> - English (default)</p>
6299
- * </li>
6300
- * <li>
6301
- * <p>
6302
6427
  * <code>jp</code> - Japanese</p>
6303
6428
  * </li>
6304
6429
  * <li>
@@ -6370,11 +6495,16 @@ export interface UpdateProvisionedProductOutput {
6370
6495
  }
6371
6496
  /**
6372
6497
  * @public
6498
+ * @enum
6373
6499
  */
6374
- export declare enum PropertyKey {
6375
- LaunchRole = "LAUNCH_ROLE",
6376
- Owner = "OWNER"
6377
- }
6500
+ export declare const PropertyKey: {
6501
+ readonly LaunchRole: "LAUNCH_ROLE";
6502
+ readonly Owner: "OWNER";
6503
+ };
6504
+ /**
6505
+ * @public
6506
+ */
6507
+ export type PropertyKey = (typeof PropertyKey)[keyof typeof PropertyKey];
6378
6508
  /**
6379
6509
  * @public
6380
6510
  */
@@ -6384,10 +6514,6 @@ export interface UpdateProvisionedProductPropertiesInput {
6384
6514
  * <ul>
6385
6515
  * <li>
6386
6516
  * <p>
6387
- * <code>en</code> - English (default)</p>
6388
- * </li>
6389
- * <li>
6390
- * <p>
6391
6517
  * <code>jp</code> - Japanese</p>
6392
6518
  * </li>
6393
6519
  * <li>
@@ -6409,7 +6535,7 @@ export interface UpdateProvisionedProductPropertiesInput {
6409
6535
  * calls a provisioning operation such as <code>UpdateProvisionedProduct</code>,
6410
6536
  * <code>TerminateProvisionedProduct</code>, or
6411
6537
  * <code>ExecuteProvisionedProductServiceAction</code>. Only a role ARN is valid. A user ARN is invalid. </p>
6412
- * <p>The <code>OWNER</code> key accepts IAM user ARNs, IAM role ARNs, and STS
6538
+ * <p>The <code>OWNER</code> key accepts user ARNs, IAM role ARNs, and STS
6413
6539
  * assumed-role ARNs. The owner is the user that has permission to see, update, terminate, and
6414
6540
  * execute service actions in the provisioned product.</p>
6415
6541
  * <p>The administrator can change the owner of a provisioned product to another IAM or STS entity within the
@@ -6459,10 +6585,6 @@ export interface UpdateProvisioningArtifactInput {
6459
6585
  * <ul>
6460
6586
  * <li>
6461
6587
  * <p>
6462
- * <code>en</code> - English (default)</p>
6463
- * </li>
6464
- * <li>
6465
- * <p>
6466
6588
  * <code>jp</code> - Japanese</p>
6467
6589
  * </li>
6468
6590
  * <li>
@@ -6544,10 +6666,6 @@ export interface UpdateServiceActionInput {
6544
6666
  * <ul>
6545
6667
  * <li>
6546
6668
  * <p>
6547
- * <code>en</code> - English (default)</p>
6548
- * </li>
6549
- * <li>
6550
- * <p>
6551
6669
  * <code>jp</code> - Japanese</p>
6552
6670
  * </li>
6553
6671
  * <li>