cdk-comprehend-s3olap 2.0.238 → 2.0.239

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.
@@ -59,6 +59,14 @@ declare class Backup extends Service {
59
59
  * This action creates a legal hold on a recovery point (backup). A legal hold is a restraint on altering or deleting a backup until an authorized user cancels the legal hold. Any actions to delete or disassociate a recovery point will fail with an error if one or more active legal holds are on the recovery point.
60
60
  */
61
61
  createLegalHold(callback?: (err: AWSError, data: Backup.Types.CreateLegalHoldOutput) => void): Request<Backup.Types.CreateLegalHoldOutput, AWSError>;
62
+ /**
63
+ * This request creates a logical container where backups are stored. This request includes a name, optionally one or more resource tags, an encryption key, and a request ID. Do not include sensitive data, such as passport numbers, in the name of a backup vault.
64
+ */
65
+ createLogicallyAirGappedBackupVault(params: Backup.Types.CreateLogicallyAirGappedBackupVaultInput, callback?: (err: AWSError, data: Backup.Types.CreateLogicallyAirGappedBackupVaultOutput) => void): Request<Backup.Types.CreateLogicallyAirGappedBackupVaultOutput, AWSError>;
66
+ /**
67
+ * This request creates a logical container where backups are stored. This request includes a name, optionally one or more resource tags, an encryption key, and a request ID. Do not include sensitive data, such as passport numbers, in the name of a backup vault.
68
+ */
69
+ createLogicallyAirGappedBackupVault(callback?: (err: AWSError, data: Backup.Types.CreateLogicallyAirGappedBackupVaultOutput) => void): Request<Backup.Types.CreateLogicallyAirGappedBackupVaultOutput, AWSError>;
62
70
  /**
63
71
  * Creates a report plan. A report plan is a document that contains information about the contents of the report and where Backup will deliver it. If you call CreateReportPlan with a plan that already exists, you receive an AlreadyExistsException exception.
64
72
  */
@@ -399,6 +407,14 @@ declare class Backup extends Service {
399
407
  * Returns an array of resources successfully backed up by Backup, including the time the resource was saved, an Amazon Resource Name (ARN) of the resource, and a resource type.
400
408
  */
401
409
  listProtectedResources(callback?: (err: AWSError, data: Backup.Types.ListProtectedResourcesOutput) => void): Request<Backup.Types.ListProtectedResourcesOutput, AWSError>;
410
+ /**
411
+ * This request lists the protected resources corresponding to each backup vault.
412
+ */
413
+ listProtectedResourcesByBackupVault(params: Backup.Types.ListProtectedResourcesByBackupVaultInput, callback?: (err: AWSError, data: Backup.Types.ListProtectedResourcesByBackupVaultOutput) => void): Request<Backup.Types.ListProtectedResourcesByBackupVaultOutput, AWSError>;
414
+ /**
415
+ * This request lists the protected resources corresponding to each backup vault.
416
+ */
417
+ listProtectedResourcesByBackupVault(callback?: (err: AWSError, data: Backup.Types.ListProtectedResourcesByBackupVaultOutput) => void): Request<Backup.Types.ListProtectedResourcesByBackupVaultOutput, AWSError>;
402
418
  /**
403
419
  * Returns detailed information about the recovery points stored in a backup vault.
404
420
  */
@@ -632,7 +648,7 @@ declare namespace Backup {
632
648
  */
633
649
  CompletionDate?: timestamp;
634
650
  /**
635
- * The current state of a resource recovery point.
651
+ * The current state of a backup job.
636
652
  */
637
653
  State?: BackupJobState;
638
654
  /**
@@ -834,7 +850,7 @@ declare namespace Backup {
834
850
  */
835
851
  ScheduleExpression?: CronExpression;
836
852
  /**
837
- * A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional. If this value is included, it must be at least 60 minutes to avoid errors. During the start window, the backup job status remains in CREATED status until it has successfully begun or until the start window time has run out. If within the start window time Backup receives an error that allows the job to be retried, Backup will automatically retry to begin the job at least every 10 minutes until the backup successfully begins (the job status changes to RUNNING) or until the job status changes to EXPIRED (which is expected to occur when the start window time is over).
853
+ * A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional. If this value is included, it must be at least 60 minutes to avoid errors. This parameter has a maximum value of 100 years (52,560,000 minutes). During the start window, the backup job status remains in CREATED status until it has successfully begun or until the start window time has run out. If within the start window time Backup receives an error that allows the job to be retried, Backup will automatically retry to begin the job at least every 10 minutes until the backup successfully begins (the job status changes to RUNNING) or until the job status changes to EXPIRED (which is expected to occur when the start window time is over).
838
854
  */
839
855
  StartWindowMinutes?: WindowMinutes;
840
856
  /**
@@ -842,7 +858,7 @@ declare namespace Backup {
842
858
  */
843
859
  CompletionWindowMinutes?: WindowMinutes;
844
860
  /**
845
- * The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup will transition and expire backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that are able to be transitioned to cold storage are listed in the "Lifecycle to cold storage" section of the Feature availability by resource table. Backup ignores this expression for other resource types.
861
+ * The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup will transition and expire backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that are able to be transitioned to cold storage are listed in the "Lifecycle to cold storage" section of the Feature availability by resource table. Backup ignores this expression for other resource types. This parameter has a maximum value of 100 years (36,500 days).
846
862
  */
847
863
  Lifecycle?: Lifecycle;
848
864
  /**
@@ -1335,6 +1351,46 @@ declare namespace Backup {
1335
1351
  */
1336
1352
  RecoveryPointSelection?: RecoveryPointSelection;
1337
1353
  }
1354
+ export interface CreateLogicallyAirGappedBackupVaultInput {
1355
+ /**
1356
+ * This is the name of the vault that is being created.
1357
+ */
1358
+ BackupVaultName: BackupVaultName;
1359
+ /**
1360
+ * These are the tags that will be included in the newly-created vault.
1361
+ */
1362
+ BackupVaultTags?: Tags;
1363
+ /**
1364
+ * This is the ID of the creation request.
1365
+ */
1366
+ CreatorRequestId?: string;
1367
+ /**
1368
+ * This setting specifies the minimum retention period that the vault retains its recovery points. If this parameter is not specified, no minimum retention period is enforced. If specified, any backup or copy job to the vault must have a lifecycle policy with a retention period equal to or longer than the minimum retention period. If a job retention period is shorter than that minimum retention period, then the vault fails the backup or copy job, and you should either modify your lifecycle settings or use a different vault.
1369
+ */
1370
+ MinRetentionDays: Long;
1371
+ /**
1372
+ * This is the setting that specifies the maximum retention period that the vault retains its recovery points. If this parameter is not specified, Backup does not enforce a maximum retention period on the recovery points in the vault (allowing indefinite storage). If specified, any backup or copy job to the vault must have a lifecycle policy with a retention period equal to or shorter than the maximum retention period. If the job retention period is longer than that maximum retention period, then the vault fails the backup or copy job, and you should either modify your lifecycle settings or use a different vault.
1373
+ */
1374
+ MaxRetentionDays: Long;
1375
+ }
1376
+ export interface CreateLogicallyAirGappedBackupVaultOutput {
1377
+ /**
1378
+ * The name of a logical container where backups are stored. Logically air-gapped backup vaults are identified by names that are unique to the account used to create them and the Region where they are created. They consist of lowercase letters, numbers, and hyphens.
1379
+ */
1380
+ BackupVaultName?: BackupVaultName;
1381
+ /**
1382
+ * This is the ARN (Amazon Resource Name) of the vault being created.
1383
+ */
1384
+ BackupVaultArn?: ARN;
1385
+ /**
1386
+ * The date and time when the vault was created. This value is in Unix format, Coordinated Universal Time (UTC), and accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
1387
+ */
1388
+ CreationDate?: timestamp;
1389
+ /**
1390
+ * This is the current state of the vault.
1391
+ */
1392
+ VaultState?: VaultState;
1393
+ }
1338
1394
  export interface CreateReportPlanInput {
1339
1395
  /**
1340
1396
  * The unique name of the report plan. The name must be between 1 and 256 characters, starting with a letter, and consisting of letters (a-z, A-Z), numbers (0-9), and underscores (_).
@@ -1506,7 +1562,7 @@ declare namespace Backup {
1506
1562
  */
1507
1563
  CompletionDate?: timestamp;
1508
1564
  /**
1509
- * The current state of a resource recovery point.
1565
+ * The current state of a backup job.
1510
1566
  */
1511
1567
  State?: BackupJobState;
1512
1568
  /**
@@ -1579,6 +1635,10 @@ declare namespace Backup {
1579
1635
  * The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.
1580
1636
  */
1581
1637
  BackupVaultName: string;
1638
+ /**
1639
+ * This is the account ID of the specified backup vault.
1640
+ */
1641
+ BackupVaultAccountId?: string;
1582
1642
  }
1583
1643
  export interface DescribeBackupVaultOutput {
1584
1644
  /**
@@ -1589,6 +1649,10 @@ declare namespace Backup {
1589
1649
  * An Amazon Resource Name (ARN) that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.
1590
1650
  */
1591
1651
  BackupVaultArn?: ARN;
1652
+ /**
1653
+ * This is the type of vault described.
1654
+ */
1655
+ VaultType?: VaultType;
1592
1656
  /**
1593
1657
  * The server-side encryption key that is used to protect your backups; for example, arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab.
1594
1658
  */
@@ -1719,6 +1783,10 @@ declare namespace Backup {
1719
1783
  * An Amazon Resource Name (ARN) that uniquely identifies a recovery point; for example, arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45.
1720
1784
  */
1721
1785
  RecoveryPointArn: ARN;
1786
+ /**
1787
+ * This is the account ID of the specified backup vault.
1788
+ */
1789
+ BackupVaultAccountId?: AccountId;
1722
1790
  }
1723
1791
  export interface DescribeRecoveryPointOutput {
1724
1792
  /**
@@ -2192,6 +2260,10 @@ declare namespace Backup {
2192
2260
  * An Amazon Resource Name (ARN) that uniquely identifies a recovery point; for example, arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45.
2193
2261
  */
2194
2262
  RecoveryPointArn: ARN;
2263
+ /**
2264
+ * This is the account ID of the specified backup vault.
2265
+ */
2266
+ BackupVaultAccountId?: AccountId;
2195
2267
  }
2196
2268
  export interface GetRecoveryPointRestoreMetadataOutput {
2197
2269
  /**
@@ -2414,6 +2486,14 @@ declare namespace Backup {
2414
2486
  BackupSelectionsList?: BackupSelectionsList;
2415
2487
  }
2416
2488
  export interface ListBackupVaultsInput {
2489
+ /**
2490
+ * This parameter will sort the list of vaults by vault type.
2491
+ */
2492
+ ByVaultType?: VaultType;
2493
+ /**
2494
+ * This parameter will sort the list of vaults by shared vaults.
2495
+ */
2496
+ ByShared?: boolean;
2417
2497
  /**
2418
2498
  * The next item following a partial list of returned items. For example, if a request is made to return maxResults number of items, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
2419
2499
  */
@@ -2534,6 +2614,34 @@ declare namespace Backup {
2534
2614
  LegalHolds?: LegalHoldsList;
2535
2615
  }
2536
2616
  export type ListOfTags = Condition[];
2617
+ export interface ListProtectedResourcesByBackupVaultInput {
2618
+ /**
2619
+ * This is the list of protected resources by backup vault within the vault(s) you specify by name.
2620
+ */
2621
+ BackupVaultName: BackupVaultName;
2622
+ /**
2623
+ * This is the list of protected resources by backup vault within the vault(s) you specify by account ID.
2624
+ */
2625
+ BackupVaultAccountId?: AccountId;
2626
+ /**
2627
+ * The next item following a partial list of returned items. For example, if a request is made to return maxResults number of items, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
2628
+ */
2629
+ NextToken?: string;
2630
+ /**
2631
+ * The maximum number of items to be returned.
2632
+ */
2633
+ MaxResults?: MaxResults;
2634
+ }
2635
+ export interface ListProtectedResourcesByBackupVaultOutput {
2636
+ /**
2637
+ * These are the results returned for the request ListProtectedResourcesByBackupVault.
2638
+ */
2639
+ Results?: ProtectedResourcesList;
2640
+ /**
2641
+ * The next item following a partial list of returned items. For example, if a request is made to return maxResults number of items, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
2642
+ */
2643
+ NextToken?: string;
2644
+ }
2537
2645
  export interface ListProtectedResourcesInput {
2538
2646
  /**
2539
2647
  * The next item following a partial list of returned items. For example, if a request is made to return maxResults number of items, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
@@ -2559,6 +2667,10 @@ declare namespace Backup {
2559
2667
  * The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens. Backup vault name might not be available when a supported service creates the backup.
2560
2668
  */
2561
2669
  BackupVaultName: BackupVaultName;
2670
+ /**
2671
+ * This parameter will sort the list of recovery points by account ID.
2672
+ */
2673
+ BackupVaultAccountId?: AccountId;
2562
2674
  /**
2563
2675
  * The next item following a partial list of returned items. For example, if a request is made to return maxResults number of items, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
2564
2676
  */
@@ -3235,15 +3347,15 @@ declare namespace Backup {
3235
3347
  */
3236
3348
  IdempotencyToken?: string;
3237
3349
  /**
3238
- * A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional, and the default is 8 hours. If this value is included, it must be at least 60 minutes to avoid errors. During the start window, the backup job status remains in CREATED status until it has successfully begun or until the start window time has run out. If within the start window time Backup receives an error that allows the job to be retried, Backup will automatically retry to begin the job at least every 10 minutes until the backup successfully begins (the job status changes to RUNNING) or until the job status changes to EXPIRED (which is expected to occur when the start window time is over).
3350
+ * A value in minutes after a backup is scheduled before a job will be canceled if it doesn't start successfully. This value is optional, and the default is 8 hours. If this value is included, it must be at least 60 minutes to avoid errors. This parameter has a maximum value of 100 years (52,560,000 minutes). During the start window, the backup job status remains in CREATED status until it has successfully begun or until the start window time has run out. If within the start window time Backup receives an error that allows the job to be retried, Backup will automatically retry to begin the job at least every 10 minutes until the backup successfully begins (the job status changes to RUNNING) or until the job status changes to EXPIRED (which is expected to occur when the start window time is over).
3239
3351
  */
3240
3352
  StartWindowMinutes?: WindowMinutes;
3241
3353
  /**
3242
- * A value in minutes during which a successfully started backup must complete, or else Backup will cancel the job. This value is optional. This value begins counting down from when the backup was scheduled. It does not add additional time for StartWindowMinutes, or if the backup started later than scheduled.
3354
+ * A value in minutes during which a successfully started backup must complete, or else Backup will cancel the job. This value is optional. This value begins counting down from when the backup was scheduled. It does not add additional time for StartWindowMinutes, or if the backup started later than scheduled. Like StartWindowMinutes, this parameter has a maximum value of 100 years (52,560,000 minutes).
3243
3355
  */
3244
3356
  CompleteWindowMinutes?: WindowMinutes;
3245
3357
  /**
3246
- * The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup will transition and expire backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that are able to be transitioned to cold storage are listed in the "Lifecycle to cold storage" section of the Feature availability by resource table. Backup ignores this expression for other resource types.
3358
+ * The lifecycle defines when a protected resource is transitioned to cold storage and when it expires. Backup will transition and expire backups automatically according to the lifecycle that you define. Backups transitioned to cold storage must be stored in cold storage for a minimum of 90 days. Therefore, the “retention” setting must be 90 days greater than the “transition to cold after days” setting. The “transition to cold after days” setting cannot be changed after a backup has been transitioned to cold. Resource types that are able to be transitioned to cold storage are listed in the "Lifecycle to cold storage" section of the Feature availability by resource table. Backup ignores this expression for other resource types. This parameter has a maximum value of 100 years (36,500 days).
3247
3359
  */
3248
3360
  Lifecycle?: Lifecycle;
3249
3361
  /**
@@ -3538,6 +3650,8 @@ declare namespace Backup {
3538
3650
  CreationTime?: timestamp;
3539
3651
  }
3540
3652
  export type VaultNames = string[];
3653
+ export type VaultState = "CREATING"|"AVAILABLE"|"FAILED"|string;
3654
+ export type VaultType = "BACKUP_VAULT"|"LOGICALLY_AIR_GAPPED_BACKUP_VAULT"|string;
3541
3655
  export type WindowMinutes = number;
3542
3656
  export type integer = number;
3543
3657
  export type long = number;
@@ -532,6 +532,14 @@ declare class ElastiCache extends Service {
532
532
  * Represents the input of a TestFailover operation which test automatic failover on a specified node group (called shard in the console) in a replication group (called cluster in the console). This API is designed for testing the behavior of your application in case of ElastiCache failover. It is not designed to be an operational tool for initiating a failover to overcome a problem you may have with the cluster. Moreover, in certain conditions such as large-scale operational events, Amazon may block this API. Note the following A customer can use this operation to test automatic failover on up to 5 shards (called node groups in the ElastiCache API and Amazon CLI) in any rolling 24-hour period. If calling this operation on shards in different clusters (called replication groups in the API and CLI), the calls can be made concurrently. If calling this operation multiple times on different shards in the same Redis (cluster mode enabled) replication group, the first node replacement must complete before a subsequent call can be made. To determine whether the node replacement is complete you can check Events using the Amazon ElastiCache console, the Amazon CLI, or the ElastiCache API. Look for the following automatic failover related events, listed here in order of occurrance: Replication group message: Test Failover API called for node group &lt;node-group-id&gt; Cache cluster message: Failover from primary node &lt;primary-node-id&gt; to replica node &lt;node-id&gt; completed Replication group message: Failover from primary node &lt;primary-node-id&gt; to replica node &lt;node-id&gt; completed Cache cluster message: Recovering cache nodes &lt;node-id&gt; Cache cluster message: Finished recovery for cache nodes &lt;node-id&gt; For more information see: Viewing ElastiCache Events in the ElastiCache User Guide DescribeEvents in the ElastiCache API Reference Also see, Testing Multi-AZ in the ElastiCache User Guide.
533
533
  */
534
534
  testFailover(callback?: (err: AWSError, data: ElastiCache.Types.TestFailoverResult) => void): Request<ElastiCache.Types.TestFailoverResult, AWSError>;
535
+ /**
536
+ * Async API to test connection between source and target replication group.
537
+ */
538
+ testMigration(params: ElastiCache.Types.TestMigrationMessage, callback?: (err: AWSError, data: ElastiCache.Types.TestMigrationResponse) => void): Request<ElastiCache.Types.TestMigrationResponse, AWSError>;
539
+ /**
540
+ * Async API to test connection between source and target replication group.
541
+ */
542
+ testMigration(callback?: (err: AWSError, data: ElastiCache.Types.TestMigrationResponse) => void): Request<ElastiCache.Types.TestMigrationResponse, AWSError>;
535
543
  /**
536
544
  * Waits for the cacheClusterAvailable state by periodically calling the underlying ElastiCache.describeCacheClustersoperation every 15 seconds (at most 40 times). Wait until ElastiCache cluster is available.
537
545
  */
@@ -2413,7 +2421,7 @@ declare namespace ElastiCache {
2413
2421
  */
2414
2422
  GlobalReplicationGroupId: String;
2415
2423
  /**
2416
- * The number of node groups you wish to add
2424
+ * Total number of node groups you want
2417
2425
  */
2418
2426
  NodeGroupCount: Integer;
2419
2427
  /**
@@ -3872,6 +3880,19 @@ declare namespace ElastiCache {
3872
3880
  export interface TestFailoverResult {
3873
3881
  ReplicationGroup?: ReplicationGroup;
3874
3882
  }
3883
+ export interface TestMigrationMessage {
3884
+ /**
3885
+ * The ID of the replication group to which data is to be migrated.
3886
+ */
3887
+ ReplicationGroupId: String;
3888
+ /**
3889
+ * List of endpoints from which data should be migrated. List should have only one element.
3890
+ */
3891
+ CustomerNodeEndpointList: CustomerNodeEndpointList;
3892
+ }
3893
+ export interface TestMigrationResponse {
3894
+ ReplicationGroup?: ReplicationGroup;
3895
+ }
3875
3896
  export interface TimeRangeFilter {
3876
3897
  /**
3877
3898
  * The start time of the time range filter
@@ -428,11 +428,11 @@ declare class ServiceCatalog extends Service {
428
428
  */
429
429
  getProvisionedProductOutputs(callback?: (err: AWSError, data: ServiceCatalog.Types.GetProvisionedProductOutputsOutput) => void): Request<ServiceCatalog.Types.GetProvisionedProductOutputsOutput, AWSError>;
430
430
  /**
431
- * Requests the import of a resource as an Service Catalog provisioned product that is associated to an Service Catalog product and provisioning artifact. Once imported, all supported governance actions are supported on the provisioned product. Resource import only supports CloudFormation stack ARNs. CloudFormation StackSets, and non-root nested stacks are not supported. The CloudFormation stack must have one of the following statuses to be imported: CREATE_COMPLETE, UPDATE_COMPLETE, UPDATE_ROLLBACK_COMPLETE, IMPORT_COMPLETE, and IMPORT_ROLLBACK_COMPLETE. Import of the resource requires that the CloudFormation stack template matches the associated Service Catalog product provisioning artifact. When you import an existing CloudFormation stack into a portfolio, constraints that are associated with the product aren't applied during the import process. The constraints are applied after you call UpdateProvisionedProduct for the provisioned product. The user or role that performs this operation must have the cloudformation:GetTemplate and cloudformation:DescribeStacks IAM policy permissions.
431
+ * Requests the import of a resource as an Service Catalog provisioned product that is associated to an Service Catalog product and provisioning artifact. Once imported, all supported governance actions are supported on the provisioned product. Resource import only supports CloudFormation stack ARNs. CloudFormation StackSets, and non-root nested stacks, are not supported. The CloudFormation stack must have one of the following statuses to be imported: CREATE_COMPLETE, UPDATE_COMPLETE, UPDATE_ROLLBACK_COMPLETE, IMPORT_COMPLETE, and IMPORT_ROLLBACK_COMPLETE. Import of the resource requires that the CloudFormation stack template matches the associated Service Catalog product provisioning artifact. When you import an existing CloudFormation stack into a portfolio, Service Catalog does not apply the product's associated constraints during the import process. Service Catalog applies the constraints after you call UpdateProvisionedProduct for the provisioned product. The user or role that performs this operation must have the cloudformation:GetTemplate and cloudformation:DescribeStacks IAM policy permissions. You can only import one provisioned product at a time. The product's CloudFormation stack must have the IMPORT_COMPLETE status before you import another.
432
432
  */
433
433
  importAsProvisionedProduct(params: ServiceCatalog.Types.ImportAsProvisionedProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ImportAsProvisionedProductOutput) => void): Request<ServiceCatalog.Types.ImportAsProvisionedProductOutput, AWSError>;
434
434
  /**
435
- * Requests the import of a resource as an Service Catalog provisioned product that is associated to an Service Catalog product and provisioning artifact. Once imported, all supported governance actions are supported on the provisioned product. Resource import only supports CloudFormation stack ARNs. CloudFormation StackSets, and non-root nested stacks are not supported. The CloudFormation stack must have one of the following statuses to be imported: CREATE_COMPLETE, UPDATE_COMPLETE, UPDATE_ROLLBACK_COMPLETE, IMPORT_COMPLETE, and IMPORT_ROLLBACK_COMPLETE. Import of the resource requires that the CloudFormation stack template matches the associated Service Catalog product provisioning artifact. When you import an existing CloudFormation stack into a portfolio, constraints that are associated with the product aren't applied during the import process. The constraints are applied after you call UpdateProvisionedProduct for the provisioned product. The user or role that performs this operation must have the cloudformation:GetTemplate and cloudformation:DescribeStacks IAM policy permissions.
435
+ * Requests the import of a resource as an Service Catalog provisioned product that is associated to an Service Catalog product and provisioning artifact. Once imported, all supported governance actions are supported on the provisioned product. Resource import only supports CloudFormation stack ARNs. CloudFormation StackSets, and non-root nested stacks, are not supported. The CloudFormation stack must have one of the following statuses to be imported: CREATE_COMPLETE, UPDATE_COMPLETE, UPDATE_ROLLBACK_COMPLETE, IMPORT_COMPLETE, and IMPORT_ROLLBACK_COMPLETE. Import of the resource requires that the CloudFormation stack template matches the associated Service Catalog product provisioning artifact. When you import an existing CloudFormation stack into a portfolio, Service Catalog does not apply the product's associated constraints during the import process. Service Catalog applies the constraints after you call UpdateProvisionedProduct for the provisioned product. The user or role that performs this operation must have the cloudformation:GetTemplate and cloudformation:DescribeStacks IAM policy permissions. You can only import one provisioned product at a time. The product's CloudFormation stack must have the IMPORT_COMPLETE status before you import another.
436
436
  */
437
437
  importAsProvisionedProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.ImportAsProvisionedProductOutput) => void): Request<ServiceCatalog.Types.ImportAsProvisionedProductOutput, AWSError>;
438
438
  /**
@@ -676,11 +676,11 @@ declare class ServiceCatalog extends Service {
676
676
  */
677
677
  updatePortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.UpdatePortfolioOutput) => void): Request<ServiceCatalog.Types.UpdatePortfolioOutput, AWSError>;
678
678
  /**
679
- * Updates the specified portfolio share. You can use this API to enable or disable TagOptions sharing or Principal sharing for an existing portfolio share. The portfolio share cannot be updated if the CreatePortfolioShare operation is IN_PROGRESS, as the share is not available to recipient entities. In this case, you must wait for the portfolio share to be COMPLETED. You must provide the accountId or organization node in the input, but not both. If the portfolio is shared to both an external account and an organization node, and both shares need to be updated, you must invoke UpdatePortfolioShare separately for each share type. This API cannot be used for removing the portfolio share. You must use DeletePortfolioShare API for that action. When you associate a principal with portfolio, a potential privilege escalation path may occur when that portfolio is then shared with other accounts. For a user in a recipient account who is not an Service Catalog Admin, but still has the ability to create Principals (Users/Groups/Roles), that user could create a role that matches a principal name association for the portfolio. Although this user may not know which principal names are associated through Service Catalog, they may be able to guess the user. If this potential escalation path is a concern, then Service Catalog recommends using PrincipalType as IAM. With this configuration, the PrincipalARN must already exist in the recipient account before it can be associated.
679
+ * Updates the specified portfolio share. You can use this API to enable or disable TagOptions sharing or Principal sharing for an existing portfolio share. The portfolio share cannot be updated if the CreatePortfolioShare operation is IN_PROGRESS, as the share is not available to recipient entities. In this case, you must wait for the portfolio share to be completed. You must provide the accountId or organization node in the input, but not both. If the portfolio is shared to both an external account and an organization node, and both shares need to be updated, you must invoke UpdatePortfolioShare separately for each share type. This API cannot be used for removing the portfolio share. You must use DeletePortfolioShare API for that action. When you associate a principal with portfolio, a potential privilege escalation path may occur when that portfolio is then shared with other accounts. For a user in a recipient account who is not an Service Catalog Admin, but still has the ability to create Principals (Users/Groups/Roles), that user could create a role that matches a principal name association for the portfolio. Although this user may not know which principal names are associated through Service Catalog, they may be able to guess the user. If this potential escalation path is a concern, then Service Catalog recommends using PrincipalType as IAM. With this configuration, the PrincipalARN must already exist in the recipient account before it can be associated.
680
680
  */
681
681
  updatePortfolioShare(params: ServiceCatalog.Types.UpdatePortfolioShareInput, callback?: (err: AWSError, data: ServiceCatalog.Types.UpdatePortfolioShareOutput) => void): Request<ServiceCatalog.Types.UpdatePortfolioShareOutput, AWSError>;
682
682
  /**
683
- * Updates the specified portfolio share. You can use this API to enable or disable TagOptions sharing or Principal sharing for an existing portfolio share. The portfolio share cannot be updated if the CreatePortfolioShare operation is IN_PROGRESS, as the share is not available to recipient entities. In this case, you must wait for the portfolio share to be COMPLETED. You must provide the accountId or organization node in the input, but not both. If the portfolio is shared to both an external account and an organization node, and both shares need to be updated, you must invoke UpdatePortfolioShare separately for each share type. This API cannot be used for removing the portfolio share. You must use DeletePortfolioShare API for that action. When you associate a principal with portfolio, a potential privilege escalation path may occur when that portfolio is then shared with other accounts. For a user in a recipient account who is not an Service Catalog Admin, but still has the ability to create Principals (Users/Groups/Roles), that user could create a role that matches a principal name association for the portfolio. Although this user may not know which principal names are associated through Service Catalog, they may be able to guess the user. If this potential escalation path is a concern, then Service Catalog recommends using PrincipalType as IAM. With this configuration, the PrincipalARN must already exist in the recipient account before it can be associated.
683
+ * Updates the specified portfolio share. You can use this API to enable or disable TagOptions sharing or Principal sharing for an existing portfolio share. The portfolio share cannot be updated if the CreatePortfolioShare operation is IN_PROGRESS, as the share is not available to recipient entities. In this case, you must wait for the portfolio share to be completed. You must provide the accountId or organization node in the input, but not both. If the portfolio is shared to both an external account and an organization node, and both shares need to be updated, you must invoke UpdatePortfolioShare separately for each share type. This API cannot be used for removing the portfolio share. You must use DeletePortfolioShare API for that action. When you associate a principal with portfolio, a potential privilege escalation path may occur when that portfolio is then shared with other accounts. For a user in a recipient account who is not an Service Catalog Admin, but still has the ability to create Principals (Users/Groups/Roles), that user could create a role that matches a principal name association for the portfolio. Although this user may not know which principal names are associated through Service Catalog, they may be able to guess the user. If this potential escalation path is a concern, then Service Catalog recommends using PrincipalType as IAM. With this configuration, the PrincipalARN must already exist in the recipient account before it can be associated.
684
684
  */
685
685
  updatePortfolioShare(callback?: (err: AWSError, data: ServiceCatalog.Types.UpdatePortfolioShareOutput) => void): Request<ServiceCatalog.Types.UpdatePortfolioShareOutput, AWSError>;
686
686
  /**
@@ -756,7 +756,7 @@ declare namespace ServiceCatalog {
756
756
  */
757
757
  Key?: AccessLevelFilterKey;
758
758
  /**
759
- * The user to which the access level applies. The only supported value is Self.
759
+ * The user to which the access level applies. The only supported value is self.
760
760
  */
761
761
  Value?: AccessLevelFilterValue;
762
762
  }
@@ -2994,7 +2994,7 @@ declare namespace ServiceCatalog {
2994
2994
  export type Principals = Principal[];
2995
2995
  export type ProductArn = string;
2996
2996
  export type ProductSource = "ACCOUNT"|string;
2997
- export type ProductType = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE"|"TERRAFORM_OPEN_SOURCE"|string;
2997
+ export type ProductType = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE"|"TERRAFORM_OPEN_SOURCE"|"TERRAFORM_CLOUD"|string;
2998
2998
  export type ProductViewAggregationType = string;
2999
2999
  export interface ProductViewAggregationValue {
3000
3000
  /**
@@ -3189,11 +3189,11 @@ declare namespace ServiceCatalog {
3189
3189
  */
3190
3190
  LastRecordId?: Id;
3191
3191
  /**
3192
- * The record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct UpdateProvisionedProduct ExecuteProvisionedProductPlan TerminateProvisionedProduct
3192
+ * The record identifier of the last request performed on this provisioned product of the following types: ProvisionProduct UpdateProvisionedProduct ExecuteProvisionedProductPlan TerminateProvisionedProduct
3193
3193
  */
3194
3194
  LastProvisioningRecordId?: Id;
3195
3195
  /**
3196
- * The record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct UpdateProvisionedProduct ExecuteProvisionedProductPlan TerminateProvisionedProduct
3196
+ * The record identifier of the last successful request performed on this provisioned product of the following types: ProvisionProduct UpdateProvisionedProduct ExecuteProvisionedProductPlan TerminateProvisionedProduct
3197
3197
  */
3198
3198
  LastSuccessfulProvisioningRecordId?: Id;
3199
3199
  /**
@@ -3268,11 +3268,11 @@ declare namespace ServiceCatalog {
3268
3268
  */
3269
3269
  LastRecordId?: LastRequestId;
3270
3270
  /**
3271
- * The record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct UpdateProvisionedProduct ExecuteProvisionedProductPlan TerminateProvisionedProduct
3271
+ * The record identifier of the last request performed on this provisioned product of the following types: ProvisionProduct UpdateProvisionedProduct ExecuteProvisionedProductPlan TerminateProvisionedProduct
3272
3272
  */
3273
3273
  LastProvisioningRecordId?: Id;
3274
3274
  /**
3275
- * The record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct UpdateProvisionedProduct ExecuteProvisionedProductPlan TerminateProvisionedProduct
3275
+ * The record identifier of the last successful request performed on this provisioned product of the following types: ProvisionProduct UpdateProvisionedProduct ExecuteProvisionedProductPlan TerminateProvisionedProduct
3276
3276
  */
3277
3277
  LastSuccessfulProvisioningRecordId?: Id;
3278
3278
  /**
@@ -3431,7 +3431,7 @@ declare namespace ServiceCatalog {
3431
3431
  */
3432
3432
  Description?: ProvisioningArtifactName;
3433
3433
  /**
3434
- * The type of provisioning artifact. CLOUD_FORMATION_TEMPLATE - CloudFormation template MARKETPLACE_AMI - Amazon Web Services Marketplace AMI MARKETPLACE_CAR - Amazon Web Services Marketplace Clusters and Amazon Web Services Resources
3434
+ * The type of provisioning artifact. CLOUD_FORMATION_TEMPLATE - CloudFormation template
3435
3435
  */
3436
3436
  Type?: ProvisioningArtifactType;
3437
3437
  /**
@@ -3520,11 +3520,11 @@ declare namespace ServiceCatalog {
3520
3520
  */
3521
3521
  Info?: ProvisioningArtifactInfo;
3522
3522
  /**
3523
- * The type of provisioning artifact. CLOUD_FORMATION_TEMPLATE - CloudFormation template MARKETPLACE_AMI - Amazon Web Services Marketplace AMI MARKETPLACE_CAR - Amazon Web Services Marketplace Clusters and Amazon Web Services Resources TERRAFORM_OPEN_SOURCE - Terraform open source configuration file
3523
+ * The type of provisioning artifact. CLOUD_FORMATION_TEMPLATE - CloudFormation template TERRAFORM_OPEN_SOURCE - Terraform open source configuration file
3524
3524
  */
3525
3525
  Type?: ProvisioningArtifactType;
3526
3526
  /**
3527
- * If set to true, Service Catalog stops validating the specified provisioning artifact even if it is invalid.
3527
+ * If set to true, Service Catalog stops validating the specified provisioning artifact even if it is invalid. Service Catalog does not support template validation for the TERRAFORM_OS product type.
3528
3528
  */
3529
3529
  DisableTemplateValidation?: DisableTemplateValidation;
3530
3530
  }
@@ -3553,7 +3553,7 @@ declare namespace ServiceCatalog {
3553
3553
  */
3554
3554
  ProvisioningArtifactMetadata?: ProvisioningArtifactInfo;
3555
3555
  }
3556
- export type ProvisioningArtifactType = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE_AMI"|"MARKETPLACE_CAR"|"TERRAFORM_OPEN_SOURCE"|string;
3556
+ export type ProvisioningArtifactType = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE_AMI"|"MARKETPLACE_CAR"|"TERRAFORM_OPEN_SOURCE"|"TERRAFORM_CLOUD"|string;
3557
3557
  export interface ProvisioningArtifactView {
3558
3558
  /**
3559
3559
  * Summary information about a product view.
@@ -3625,7 +3625,7 @@ declare namespace ServiceCatalog {
3625
3625
  */
3626
3626
  UpdatedTime?: UpdatedTime;
3627
3627
  /**
3628
- * The type of provisioned product. The supported values are CFN_STACK and CFN_STACKSET.
3628
+ * The type of provisioned product. The supported values are CFN_STACK, CFN_STACKSET, TERRAFORM_OPEN_SOURCE, and TERRAFORM_CLOUD.
3629
3629
  */
3630
3630
  ProvisionedProductType?: ProvisionedProductType;
3631
3631
  /**
@@ -3944,7 +3944,7 @@ declare namespace ServiceCatalog {
3944
3944
  */
3945
3945
  AccessLevelFilter?: AccessLevelFilter;
3946
3946
  /**
3947
- * The search filters. When the key is SearchQuery, the searchable fields are arn, createdTime, id, lastRecordId, idempotencyToken, name, physicalId, productId, provisioningArtifact, type, status, tags, userArn, userArnSession, lastProvisioningRecordId, lastSuccessfulProvisioningRecordId, productName, and provisioningArtifactName. Example: "SearchQuery":["status:AVAILABLE"]
3947
+ * The search filters. When the key is SearchQuery, the searchable fields are arn, createdTime, id, lastRecordId, idempotencyToken, name, physicalId, productId, provisioningArtifactId, type, status, tags, userArn, userArnSession, lastProvisioningRecordId, lastSuccessfulProvisioningRecordId, productName, and provisioningArtifactName. Example: "SearchQuery":["status:AVAILABLE"]
3948
3948
  */
3949
3949
  Filters?: ProvisionedProductFilters;
3950
3950
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1431.0',
86
+ VERSION: '2.1432.0',
87
87
 
88
88
  /**
89
89
  * @api private