@aws-sdk/client-service-catalog 3.301.0 → 3.303.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.
@@ -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
  */
@@ -103,12 +108,17 @@ export declare class ResourceNotFoundException extends __BaseException {
103
108
  }
104
109
  /**
105
110
  * @public
111
+ * @enum
106
112
  */
107
- export declare enum AccessLevelFilterKey {
108
- ACCOUNT = "Account",
109
- ROLE = "Role",
110
- USER = "User"
111
- }
113
+ export declare const AccessLevelFilterKey: {
114
+ readonly ACCOUNT: "Account";
115
+ readonly ROLE: "Role";
116
+ readonly USER: "User";
117
+ };
118
+ /**
119
+ * @public
120
+ */
121
+ export type AccessLevelFilterKey = (typeof AccessLevelFilterKey)[keyof typeof AccessLevelFilterKey];
112
122
  /**
113
123
  * @public
114
124
  * <p>The access level to use to filter results.</p>
@@ -139,12 +149,17 @@ export interface AccessLevelFilter {
139
149
  }
140
150
  /**
141
151
  * @public
152
+ * @enum
142
153
  */
143
- export declare enum AccessStatus {
144
- DISABLED = "DISABLED",
145
- ENABLED = "ENABLED",
146
- UNDER_CHANGE = "UNDER_CHANGE"
147
- }
154
+ export declare const AccessStatus: {
155
+ readonly DISABLED: "DISABLED";
156
+ readonly ENABLED: "ENABLED";
157
+ readonly UNDER_CHANGE: "UNDER_CHANGE";
158
+ };
159
+ /**
160
+ * @public
161
+ */
162
+ export type AccessStatus = (typeof AccessStatus)[keyof typeof AccessStatus];
148
163
  /**
149
164
  * @public
150
165
  * <p>Information about a tag. A tag is a key-value pair. Tags are propagated
@@ -193,11 +208,16 @@ export declare class DuplicateResourceException extends __BaseException {
193
208
  }
194
209
  /**
195
210
  * @public
211
+ * @enum
196
212
  */
197
- export declare enum PrincipalType {
198
- IAM = "IAM",
199
- IAM_PATTERN = "IAM_PATTERN"
200
- }
213
+ export declare const PrincipalType: {
214
+ readonly IAM: "IAM";
215
+ readonly IAM_PATTERN: "IAM_PATTERN";
216
+ };
217
+ /**
218
+ * @public
219
+ */
220
+ export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
201
221
  /**
202
222
  * @public
203
223
  */
@@ -417,14 +437,19 @@ export interface BatchAssociateServiceActionWithProvisioningArtifactInput {
417
437
  }
418
438
  /**
419
439
  * @public
440
+ * @enum
420
441
  */
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
- }
442
+ export declare const ServiceActionAssociationErrorCode: {
443
+ readonly DuplicateResourceException: "DUPLICATE_RESOURCE";
444
+ readonly InternalFailure: "INTERNAL_FAILURE";
445
+ readonly LimitExceededException: "LIMIT_EXCEEDED";
446
+ readonly ResourceNotFoundException: "RESOURCE_NOT_FOUND";
447
+ readonly ThrottlingException: "THROTTLING";
448
+ };
449
+ /**
450
+ * @public
451
+ */
452
+ export type ServiceActionAssociationErrorCode = (typeof ServiceActionAssociationErrorCode)[keyof typeof ServiceActionAssociationErrorCode];
428
453
  /**
429
454
  * @public
430
455
  * <p>An object containing information about the error, along with identifying information about the self-service action and its associations.</p>
@@ -498,16 +523,26 @@ export interface BatchDisassociateServiceActionFromProvisioningArtifactOutput {
498
523
  }
499
524
  /**
500
525
  * @public
526
+ * @enum
501
527
  */
502
- export declare enum CopyOption {
503
- CopyTags = "CopyTags"
504
- }
528
+ export declare const CopyOption: {
529
+ readonly CopyTags: "CopyTags";
530
+ };
505
531
  /**
506
532
  * @public
507
533
  */
508
- export declare enum ProvisioningArtifactPropertyName {
509
- Id = "Id"
510
- }
534
+ export type CopyOption = (typeof CopyOption)[keyof typeof CopyOption];
535
+ /**
536
+ * @public
537
+ * @enum
538
+ */
539
+ export declare const ProvisioningArtifactPropertyName: {
540
+ readonly Id: "Id";
541
+ };
542
+ /**
543
+ * @public
544
+ */
545
+ export type ProvisioningArtifactPropertyName = (typeof ProvisioningArtifactPropertyName)[keyof typeof ProvisioningArtifactPropertyName];
511
546
  /**
512
547
  * @public
513
548
  */
@@ -745,12 +780,17 @@ export interface ConstraintDetail {
745
780
  }
746
781
  /**
747
782
  * @public
783
+ * @enum
748
784
  */
749
- export declare enum Status {
750
- AVAILABLE = "AVAILABLE",
751
- CREATING = "CREATING",
752
- FAILED = "FAILED"
753
- }
785
+ export declare const Status: {
786
+ readonly AVAILABLE: "AVAILABLE";
787
+ readonly CREATING: "CREATING";
788
+ readonly FAILED: "FAILED";
789
+ };
790
+ /**
791
+ * @public
792
+ */
793
+ export type Status = (typeof Status)[keyof typeof Status];
754
794
  /**
755
795
  * @public
756
796
  */
@@ -857,12 +897,17 @@ export interface CreatePortfolioOutput {
857
897
  }
858
898
  /**
859
899
  * @public
900
+ * @enum
860
901
  */
861
- export declare enum OrganizationNodeType {
862
- ACCOUNT = "ACCOUNT",
863
- ORGANIZATION = "ORGANIZATION",
864
- ORGANIZATIONAL_UNIT = "ORGANIZATIONAL_UNIT"
865
- }
902
+ export declare const OrganizationNodeType: {
903
+ readonly ACCOUNT: "ACCOUNT";
904
+ readonly ORGANIZATION: "ORGANIZATION";
905
+ readonly ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT";
906
+ };
907
+ /**
908
+ * @public
909
+ */
910
+ export type OrganizationNodeType = (typeof OrganizationNodeType)[keyof typeof OrganizationNodeType];
866
911
  /**
867
912
  * @public
868
913
  * <p>Information about the organization node.</p>
@@ -953,19 +998,29 @@ export declare class OperationNotSupportedException extends __BaseException {
953
998
  }
954
999
  /**
955
1000
  * @public
1001
+ * @enum
956
1002
  */
957
- export declare enum ProductType {
958
- CLOUD_FORMATION_TEMPLATE = "CLOUD_FORMATION_TEMPLATE",
959
- MARKETPLACE = "MARKETPLACE"
960
- }
1003
+ export declare const ProductType: {
1004
+ readonly CLOUD_FORMATION_TEMPLATE: "CLOUD_FORMATION_TEMPLATE";
1005
+ readonly MARKETPLACE: "MARKETPLACE";
1006
+ };
961
1007
  /**
962
1008
  * @public
963
1009
  */
964
- export declare enum ProvisioningArtifactType {
965
- CLOUD_FORMATION_TEMPLATE = "CLOUD_FORMATION_TEMPLATE",
966
- MARKETPLACE_AMI = "MARKETPLACE_AMI",
967
- MARKETPLACE_CAR = "MARKETPLACE_CAR"
968
- }
1010
+ export type ProductType = (typeof ProductType)[keyof typeof ProductType];
1011
+ /**
1012
+ * @public
1013
+ * @enum
1014
+ */
1015
+ export declare const ProvisioningArtifactType: {
1016
+ readonly CLOUD_FORMATION_TEMPLATE: "CLOUD_FORMATION_TEMPLATE";
1017
+ readonly MARKETPLACE_AMI: "MARKETPLACE_AMI";
1018
+ readonly MARKETPLACE_CAR: "MARKETPLACE_CAR";
1019
+ };
1020
+ /**
1021
+ * @public
1022
+ */
1023
+ export type ProvisioningArtifactType = (typeof ProvisioningArtifactType)[keyof typeof ProvisioningArtifactType];
969
1024
  /**
970
1025
  * @public
971
1026
  * <p>Information about a provisioning artifact (also known as a version) for a product.</p>
@@ -1053,10 +1108,15 @@ export interface SourceConnectionParameters {
1053
1108
  }
1054
1109
  /**
1055
1110
  * @public
1111
+ * @enum
1056
1112
  */
1057
- export declare enum SourceType {
1058
- CODESTAR = "CODESTAR"
1059
- }
1113
+ export declare const SourceType: {
1114
+ readonly CODESTAR: "CODESTAR";
1115
+ };
1116
+ /**
1117
+ * @public
1118
+ */
1119
+ export type SourceType = (typeof SourceType)[keyof typeof SourceType];
1060
1120
  /**
1061
1121
  * @public
1062
1122
  * <p>A top level <code>ProductViewDetail</code> response containing details about the product’s connection.
@@ -1222,11 +1282,16 @@ export interface ProductViewSummary {
1222
1282
  }
1223
1283
  /**
1224
1284
  * @public
1285
+ * @enum
1225
1286
  */
1226
- export declare enum LastSyncStatus {
1227
- FAILED = "FAILED",
1228
- SUCCEEDED = "SUCCEEDED"
1229
- }
1287
+ export declare const LastSyncStatus: {
1288
+ readonly FAILED: "FAILED";
1289
+ readonly SUCCEEDED: "SUCCEEDED";
1290
+ };
1291
+ /**
1292
+ * @public
1293
+ */
1294
+ export type LastSyncStatus = (typeof LastSyncStatus)[keyof typeof LastSyncStatus];
1230
1295
  /**
1231
1296
  * @public
1232
1297
  * <p>Provides details about the product's connection sync and contains the following sub-fields. </p>
@@ -1371,11 +1436,16 @@ export interface ProductViewDetail {
1371
1436
  }
1372
1437
  /**
1373
1438
  * @public
1439
+ * @enum
1374
1440
  */
1375
- export declare enum ProvisioningArtifactGuidance {
1376
- DEFAULT = "DEFAULT",
1377
- DEPRECATED = "DEPRECATED"
1378
- }
1441
+ export declare const ProvisioningArtifactGuidance: {
1442
+ readonly DEFAULT: "DEFAULT";
1443
+ readonly DEPRECATED: "DEPRECATED";
1444
+ };
1445
+ /**
1446
+ * @public
1447
+ */
1448
+ export type ProvisioningArtifactGuidance = (typeof ProvisioningArtifactGuidance)[keyof typeof ProvisioningArtifactGuidance];
1379
1449
  /**
1380
1450
  * @public
1381
1451
  * <p>Information about a provisioning artifact (also known as a version) for a product.</p>
@@ -1453,10 +1523,15 @@ export interface CreateProductOutput {
1453
1523
  }
1454
1524
  /**
1455
1525
  * @public
1526
+ * @enum
1456
1527
  */
1457
- export declare enum ProvisionedProductPlanType {
1458
- CLOUDFORMATION = "CLOUDFORMATION"
1459
- }
1528
+ export declare const ProvisionedProductPlanType: {
1529
+ readonly CLOUDFORMATION: "CLOUDFORMATION";
1530
+ };
1531
+ /**
1532
+ * @public
1533
+ */
1534
+ export type ProvisionedProductPlanType = (typeof ProvisionedProductPlanType)[keyof typeof ProvisionedProductPlanType];
1460
1535
  /**
1461
1536
  * @public
1462
1537
  * <p>The parameter key-value pair used to update a provisioned product.</p>
@@ -1635,19 +1710,29 @@ export interface CreateProvisioningArtifactOutput {
1635
1710
  }
1636
1711
  /**
1637
1712
  * @public
1713
+ * @enum
1638
1714
  */
1639
- export declare enum ServiceActionDefinitionKey {
1640
- AssumeRole = "AssumeRole",
1641
- Name = "Name",
1642
- Parameters = "Parameters",
1643
- Version = "Version"
1644
- }
1715
+ export declare const ServiceActionDefinitionKey: {
1716
+ readonly AssumeRole: "AssumeRole";
1717
+ readonly Name: "Name";
1718
+ readonly Parameters: "Parameters";
1719
+ readonly Version: "Version";
1720
+ };
1645
1721
  /**
1646
1722
  * @public
1647
1723
  */
1648
- export declare enum ServiceActionDefinitionType {
1649
- SsmAutomation = "SSM_AUTOMATION"
1650
- }
1724
+ export type ServiceActionDefinitionKey = (typeof ServiceActionDefinitionKey)[keyof typeof ServiceActionDefinitionKey];
1725
+ /**
1726
+ * @public
1727
+ * @enum
1728
+ */
1729
+ export declare const ServiceActionDefinitionType: {
1730
+ readonly SsmAutomation: "SSM_AUTOMATION";
1731
+ };
1732
+ /**
1733
+ * @public
1734
+ */
1735
+ export type ServiceActionDefinitionType = (typeof ServiceActionDefinitionType)[keyof typeof ServiceActionDefinitionType];
1651
1736
  /**
1652
1737
  * @public
1653
1738
  */
@@ -2152,12 +2237,17 @@ export interface DescribeCopyProductStatusInput {
2152
2237
  }
2153
2238
  /**
2154
2239
  * @public
2240
+ * @enum
2155
2241
  */
2156
- export declare enum CopyProductStatus {
2157
- FAILED = "FAILED",
2158
- IN_PROGRESS = "IN_PROGRESS",
2159
- SUCCEEDED = "SUCCEEDED"
2160
- }
2242
+ export declare const CopyProductStatus: {
2243
+ readonly FAILED: "FAILED";
2244
+ readonly IN_PROGRESS: "IN_PROGRESS";
2245
+ readonly SUCCEEDED: "SUCCEEDED";
2246
+ };
2247
+ /**
2248
+ * @public
2249
+ */
2250
+ export type CopyProductStatus = (typeof CopyProductStatus)[keyof typeof CopyProductStatus];
2161
2251
  /**
2162
2252
  * @public
2163
2253
  */
@@ -2235,13 +2325,18 @@ export interface DescribePortfolioOutput {
2235
2325
  }
2236
2326
  /**
2237
2327
  * @public
2328
+ * @enum
2238
2329
  */
2239
- export declare enum DescribePortfolioShareType {
2240
- ACCOUNT = "ACCOUNT",
2241
- ORGANIZATION = "ORGANIZATION",
2242
- ORGANIZATIONAL_UNIT = "ORGANIZATIONAL_UNIT",
2243
- ORGANIZATION_MEMBER_ACCOUNT = "ORGANIZATION_MEMBER_ACCOUNT"
2244
- }
2330
+ export declare const DescribePortfolioShareType: {
2331
+ readonly ACCOUNT: "ACCOUNT";
2332
+ readonly ORGANIZATION: "ORGANIZATION";
2333
+ readonly ORGANIZATIONAL_UNIT: "ORGANIZATIONAL_UNIT";
2334
+ readonly ORGANIZATION_MEMBER_ACCOUNT: "ORGANIZATION_MEMBER_ACCOUNT";
2335
+ };
2336
+ /**
2337
+ * @public
2338
+ */
2339
+ export type DescribePortfolioShareType = (typeof DescribePortfolioShareType)[keyof typeof DescribePortfolioShareType];
2245
2340
  /**
2246
2341
  * @public
2247
2342
  */
@@ -2354,14 +2449,19 @@ export interface ShareDetails {
2354
2449
  }
2355
2450
  /**
2356
2451
  * @public
2452
+ * @enum
2357
2453
  */
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
- }
2454
+ export declare const ShareStatus: {
2455
+ readonly COMPLETED: "COMPLETED";
2456
+ readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS";
2457
+ readonly ERROR: "ERROR";
2458
+ readonly IN_PROGRESS: "IN_PROGRESS";
2459
+ readonly NOT_STARTED: "NOT_STARTED";
2460
+ };
2461
+ /**
2462
+ * @public
2463
+ */
2464
+ export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
2365
2465
  /**
2366
2466
  * @public
2367
2467
  */
@@ -2665,14 +2765,19 @@ export interface CloudWatchDashboard {
2665
2765
  }
2666
2766
  /**
2667
2767
  * @public
2768
+ * @enum
2668
2769
  */
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
- }
2770
+ export declare const ProvisionedProductStatus: {
2771
+ readonly AVAILABLE: "AVAILABLE";
2772
+ readonly ERROR: "ERROR";
2773
+ readonly PLAN_IN_PROGRESS: "PLAN_IN_PROGRESS";
2774
+ readonly TAINTED: "TAINTED";
2775
+ readonly UNDER_CHANGE: "UNDER_CHANGE";
2776
+ };
2777
+ /**
2778
+ * @public
2779
+ */
2780
+ export type ProvisionedProductStatus = (typeof ProvisionedProductStatus)[keyof typeof ProvisionedProductStatus];
2676
2781
  /**
2677
2782
  * @public
2678
2783
  * <p>Information about a provisioned product.</p>
@@ -2858,15 +2963,20 @@ export interface DescribeProvisionedProductPlanInput {
2858
2963
  }
2859
2964
  /**
2860
2965
  * @public
2966
+ * @enum
2861
2967
  */
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
- }
2968
+ export declare const ProvisionedProductPlanStatus: {
2969
+ readonly CREATE_FAILED: "CREATE_FAILED";
2970
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
2971
+ readonly CREATE_SUCCESS: "CREATE_SUCCESS";
2972
+ readonly EXECUTE_FAILED: "EXECUTE_FAILED";
2973
+ readonly EXECUTE_IN_PROGRESS: "EXECUTE_IN_PROGRESS";
2974
+ readonly EXECUTE_SUCCESS: "EXECUTE_SUCCESS";
2975
+ };
2976
+ /**
2977
+ * @public
2978
+ */
2979
+ export type ProvisionedProductPlanStatus = (typeof ProvisionedProductPlanStatus)[keyof typeof ProvisionedProductPlanStatus];
2870
2980
  /**
2871
2981
  * @public
2872
2982
  * <p>Information about a plan.</p>
@@ -2939,38 +3049,58 @@ export interface ProvisionedProductPlanDetails {
2939
3049
  }
2940
3050
  /**
2941
3051
  * @public
3052
+ * @enum
2942
3053
  */
2943
- export declare enum ChangeAction {
2944
- ADD = "ADD",
2945
- MODIFY = "MODIFY",
2946
- REMOVE = "REMOVE"
2947
- }
3054
+ export declare const ChangeAction: {
3055
+ readonly ADD: "ADD";
3056
+ readonly MODIFY: "MODIFY";
3057
+ readonly REMOVE: "REMOVE";
3058
+ };
2948
3059
  /**
2949
3060
  * @public
2950
3061
  */
2951
- export declare enum EvaluationType {
2952
- DYNAMIC = "DYNAMIC",
2953
- STATIC = "STATIC"
2954
- }
3062
+ export type ChangeAction = (typeof ChangeAction)[keyof typeof ChangeAction];
2955
3063
  /**
2956
3064
  * @public
3065
+ * @enum
2957
3066
  */
2958
- export declare enum ResourceAttribute {
2959
- CREATIONPOLICY = "CREATIONPOLICY",
2960
- DELETIONPOLICY = "DELETIONPOLICY",
2961
- METADATA = "METADATA",
2962
- PROPERTIES = "PROPERTIES",
2963
- TAGS = "TAGS",
2964
- UPDATEPOLICY = "UPDATEPOLICY"
2965
- }
3067
+ export declare const EvaluationType: {
3068
+ readonly DYNAMIC: "DYNAMIC";
3069
+ readonly STATIC: "STATIC";
3070
+ };
2966
3071
  /**
2967
3072
  * @public
2968
3073
  */
2969
- export declare enum RequiresRecreation {
2970
- ALWAYS = "ALWAYS",
2971
- CONDITIONALLY = "CONDITIONALLY",
2972
- NEVER = "NEVER"
2973
- }
3074
+ export type EvaluationType = (typeof EvaluationType)[keyof typeof EvaluationType];
3075
+ /**
3076
+ * @public
3077
+ * @enum
3078
+ */
3079
+ export declare const ResourceAttribute: {
3080
+ readonly CREATIONPOLICY: "CREATIONPOLICY";
3081
+ readonly DELETIONPOLICY: "DELETIONPOLICY";
3082
+ readonly METADATA: "METADATA";
3083
+ readonly PROPERTIES: "PROPERTIES";
3084
+ readonly TAGS: "TAGS";
3085
+ readonly UPDATEPOLICY: "UPDATEPOLICY";
3086
+ };
3087
+ /**
3088
+ * @public
3089
+ */
3090
+ export type ResourceAttribute = (typeof ResourceAttribute)[keyof typeof ResourceAttribute];
3091
+ /**
3092
+ * @public
3093
+ * @enum
3094
+ */
3095
+ export declare const RequiresRecreation: {
3096
+ readonly ALWAYS: "ALWAYS";
3097
+ readonly CONDITIONALLY: "CONDITIONALLY";
3098
+ readonly NEVER: "NEVER";
3099
+ };
3100
+ /**
3101
+ * @public
3102
+ */
3103
+ export type RequiresRecreation = (typeof RequiresRecreation)[keyof typeof RequiresRecreation];
2974
3104
  /**
2975
3105
  * @public
2976
3106
  * <p>Information about a change to a resource attribute.</p>
@@ -3012,12 +3142,17 @@ export interface ResourceChangeDetail {
3012
3142
  }
3013
3143
  /**
3014
3144
  * @public
3145
+ * @enum
3015
3146
  */
3016
- export declare enum Replacement {
3017
- CONDITIONAL = "CONDITIONAL",
3018
- FALSE = "FALSE",
3019
- TRUE = "TRUE"
3020
- }
3147
+ export declare const Replacement: {
3148
+ readonly CONDITIONAL: "CONDITIONAL";
3149
+ readonly FALSE: "FALSE";
3150
+ readonly TRUE: "TRUE";
3151
+ };
3152
+ /**
3153
+ * @public
3154
+ */
3155
+ export type Replacement = (typeof Replacement)[keyof typeof Replacement];
3021
3156
  /**
3022
3157
  * @public
3023
3158
  * <p>Information about a resource change that will occur when a plan is executed.</p>
@@ -3446,14 +3581,19 @@ export interface RecordTag {
3446
3581
  }
3447
3582
  /**
3448
3583
  * @public
3584
+ * @enum
3449
3585
  */
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
- }
3586
+ export declare const RecordStatus: {
3587
+ readonly CREATED: "CREATED";
3588
+ readonly FAILED: "FAILED";
3589
+ readonly IN_PROGRESS: "IN_PROGRESS";
3590
+ readonly IN_PROGRESS_IN_ERROR: "IN_PROGRESS_IN_ERROR";
3591
+ readonly SUCCEEDED: "SUCCEEDED";
3592
+ };
3593
+ /**
3594
+ * @public
3595
+ */
3596
+ export type RecordStatus = (typeof RecordStatus)[keyof typeof RecordStatus];
3457
3597
  /**
3458
3598
  * @public
3459
3599
  * <p>Information about a request operation.</p>
@@ -5068,12 +5208,17 @@ export interface ListStackInstancesForProvisionedProductInput {
5068
5208
  }
5069
5209
  /**
5070
5210
  * @public
5211
+ * @enum
5071
5212
  */
5072
- export declare enum StackInstanceStatus {
5073
- CURRENT = "CURRENT",
5074
- INOPERABLE = "INOPERABLE",
5075
- OUTDATED = "OUTDATED"
5076
- }
5213
+ export declare const StackInstanceStatus: {
5214
+ readonly CURRENT: "CURRENT";
5215
+ readonly INOPERABLE: "INOPERABLE";
5216
+ readonly OUTDATED: "OUTDATED";
5217
+ };
5218
+ /**
5219
+ * @public
5220
+ */
5221
+ export type StackInstanceStatus = (typeof StackInstanceStatus)[keyof typeof StackInstanceStatus];
5077
5222
  /**
5078
5223
  * @public
5079
5224
  * <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>
@@ -5429,28 +5574,43 @@ export interface ScanProvisionedProductsOutput {
5429
5574
  }
5430
5575
  /**
5431
5576
  * @public
5577
+ * @enum
5432
5578
  */
5433
- export declare enum ProductViewFilterBy {
5434
- FullTextSearch = "FullTextSearch",
5435
- Owner = "Owner",
5436
- ProductType = "ProductType",
5437
- SourceProductId = "SourceProductId"
5438
- }
5579
+ export declare const ProductViewFilterBy: {
5580
+ readonly FullTextSearch: "FullTextSearch";
5581
+ readonly Owner: "Owner";
5582
+ readonly ProductType: "ProductType";
5583
+ readonly SourceProductId: "SourceProductId";
5584
+ };
5439
5585
  /**
5440
5586
  * @public
5441
5587
  */
5442
- export declare enum ProductViewSortBy {
5443
- CreationDate = "CreationDate",
5444
- Title = "Title",
5445
- VersionCount = "VersionCount"
5446
- }
5588
+ export type ProductViewFilterBy = (typeof ProductViewFilterBy)[keyof typeof ProductViewFilterBy];
5447
5589
  /**
5448
5590
  * @public
5591
+ * @enum
5449
5592
  */
5450
- export declare enum SortOrder {
5451
- ASCENDING = "ASCENDING",
5452
- DESCENDING = "DESCENDING"
5453
- }
5593
+ export declare const ProductViewSortBy: {
5594
+ readonly CreationDate: "CreationDate";
5595
+ readonly Title: "Title";
5596
+ readonly VersionCount: "VersionCount";
5597
+ };
5598
+ /**
5599
+ * @public
5600
+ */
5601
+ export type ProductViewSortBy = (typeof ProductViewSortBy)[keyof typeof ProductViewSortBy];
5602
+ /**
5603
+ * @public
5604
+ * @enum
5605
+ */
5606
+ export declare const SortOrder: {
5607
+ readonly ASCENDING: "ASCENDING";
5608
+ readonly DESCENDING: "DESCENDING";
5609
+ };
5610
+ /**
5611
+ * @public
5612
+ */
5613
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
5454
5614
  /**
5455
5615
  * @public
5456
5616
  */
@@ -5529,10 +5689,15 @@ export interface SearchProductsOutput {
5529
5689
  }
5530
5690
  /**
5531
5691
  * @public
5692
+ * @enum
5532
5693
  */
5533
- export declare enum ProductSource {
5534
- ACCOUNT = "ACCOUNT"
5535
- }
5694
+ export declare const ProductSource: {
5695
+ readonly ACCOUNT: "ACCOUNT";
5696
+ };
5697
+ /**
5698
+ * @public
5699
+ */
5700
+ export type ProductSource = (typeof ProductSource)[keyof typeof ProductSource];
5536
5701
  /**
5537
5702
  * @public
5538
5703
  */
@@ -5600,10 +5765,15 @@ export interface SearchProductsAsAdminOutput {
5600
5765
  }
5601
5766
  /**
5602
5767
  * @public
5768
+ * @enum
5603
5769
  */
5604
- export declare enum ProvisionedProductViewFilterBy {
5605
- SearchQuery = "SearchQuery"
5606
- }
5770
+ export declare const ProvisionedProductViewFilterBy: {
5771
+ readonly SearchQuery: "SearchQuery";
5772
+ };
5773
+ /**
5774
+ * @public
5775
+ */
5776
+ export type ProvisionedProductViewFilterBy = (typeof ProvisionedProductViewFilterBy)[keyof typeof ProvisionedProductViewFilterBy];
5607
5777
  /**
5608
5778
  * @public
5609
5779
  */
@@ -6212,12 +6382,17 @@ export interface UpdateProductOutput {
6212
6382
  }
6213
6383
  /**
6214
6384
  * @public
6385
+ * @enum
6215
6386
  */
6216
- export declare enum StackSetOperationType {
6217
- CREATE = "CREATE",
6218
- DELETE = "DELETE",
6219
- UPDATE = "UPDATE"
6220
- }
6387
+ export declare const StackSetOperationType: {
6388
+ readonly CREATE: "CREATE";
6389
+ readonly DELETE: "DELETE";
6390
+ readonly UPDATE: "UPDATE";
6391
+ };
6392
+ /**
6393
+ * @public
6394
+ */
6395
+ export type StackSetOperationType = (typeof StackSetOperationType)[keyof typeof StackSetOperationType];
6221
6396
  /**
6222
6397
  * @public
6223
6398
  * <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>
@@ -6370,11 +6545,16 @@ export interface UpdateProvisionedProductOutput {
6370
6545
  }
6371
6546
  /**
6372
6547
  * @public
6548
+ * @enum
6373
6549
  */
6374
- export declare enum PropertyKey {
6375
- LaunchRole = "LAUNCH_ROLE",
6376
- Owner = "OWNER"
6377
- }
6550
+ export declare const PropertyKey: {
6551
+ readonly LaunchRole: "LAUNCH_ROLE";
6552
+ readonly Owner: "OWNER";
6553
+ };
6554
+ /**
6555
+ * @public
6556
+ */
6557
+ export type PropertyKey = (typeof PropertyKey)[keyof typeof PropertyKey];
6378
6558
  /**
6379
6559
  * @public
6380
6560
  */