cdk-comprehend-s3olap 2.0.68 → 2.0.71
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.
- package/.jsii +4 -4
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +17 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appmesh-2019-01-25.min.json +220 -167
- package/node_modules/aws-sdk/apis/kendra-2019-02-03.min.json +105 -77
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +98 -66
- package/node_modules/aws-sdk/apis/lambda-2015-03-31.min.json +135 -111
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +405 -123
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +11 -5
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.examples.json +103 -0
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +252 -141
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/wisdom-2020-10-19.min.json +59 -3
- package/node_modules/aws-sdk/clients/appmesh.d.ts +70 -3
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +2 -2
- package/node_modules/aws-sdk/clients/kendra.d.ts +38 -6
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +48 -2
- package/node_modules/aws-sdk/clients/lambda.d.ts +45 -17
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +290 -2
- package/node_modules/aws-sdk/clients/rds.d.ts +36 -12
- package/node_modules/aws-sdk/clients/rekognition.d.ts +170 -3
- package/node_modules/aws-sdk/clients/secretsmanager.d.ts +11 -11
- package/node_modules/aws-sdk/clients/servicecatalog.d.ts +57 -57
- package/node_modules/aws-sdk/clients/wisdom.d.ts +56 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +407 -260
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +41 -41
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.js +7 -7
- package/node_modules/esbuild/package.json +22 -22
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/node_modules/object.assign/CHANGELOG.md +4 -0
- package/node_modules/object.assign/dist/browser.js +944 -0
- package/node_modules/object.assign/package.json +3 -2
- package/package.json +7 -7
@@ -76,11 +76,11 @@ declare class ServiceCatalog extends Service {
|
|
76
76
|
*/
|
77
77
|
batchDisassociateServiceActionFromProvisioningArtifact(callback?: (err: AWSError, data: ServiceCatalog.Types.BatchDisassociateServiceActionFromProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.BatchDisassociateServiceActionFromProvisioningArtifactOutput, AWSError>;
|
78
78
|
/**
|
79
|
-
* Copies the specified source product to the specified target product or a new product. You can copy a product to the same account or another account. You can copy a product to the same
|
79
|
+
* Copies the specified source product to the specified target product or a new product. You can copy a product to the same account or another account. You can copy a product to the same Region or another Region. If you copy a product to another account, you must first share the product in a portfolio using CreatePortfolioShare. This operation is performed asynchronously. To track the progress of the operation, use DescribeCopyProductStatus.
|
80
80
|
*/
|
81
81
|
copyProduct(params: ServiceCatalog.Types.CopyProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.CopyProductOutput) => void): Request<ServiceCatalog.Types.CopyProductOutput, AWSError>;
|
82
82
|
/**
|
83
|
-
* Copies the specified source product to the specified target product or a new product. You can copy a product to the same account or another account. You can copy a product to the same
|
83
|
+
* Copies the specified source product to the specified target product or a new product. You can copy a product to the same account or another account. You can copy a product to the same Region or another Region. If you copy a product to another account, you must first share the product in a portfolio using CreatePortfolioShare. This operation is performed asynchronously. To track the progress of the operation, use DescribeCopyProductStatus.
|
84
84
|
*/
|
85
85
|
copyProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.CopyProductOutput) => void): Request<ServiceCatalog.Types.CopyProductOutput, AWSError>;
|
86
86
|
/**
|
@@ -116,11 +116,11 @@ declare class ServiceCatalog extends Service {
|
|
116
116
|
*/
|
117
117
|
createProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.CreateProductOutput) => void): Request<ServiceCatalog.Types.CreateProductOutput, AWSError>;
|
118
118
|
/**
|
119
|
-
* Creates a plan. A plan includes the list of resources to be created (when provisioning a new product) or modified (when updating a provisioned product) when the plan is executed. You can create one plan
|
119
|
+
* Creates a plan. A plan includes the list of resources to be created (when provisioning a new product) or modified (when updating a provisioned product) when the plan is executed. You can create one plan for each provisioned product. To create a plan for an existing provisioned product, the product status must be AVAILABLE or TAINTED. To view the resource changes in the change set, use DescribeProvisionedProductPlan. To create or modify the provisioned product, use ExecuteProvisionedProductPlan.
|
120
120
|
*/
|
121
121
|
createProvisionedProductPlan(params: ServiceCatalog.Types.CreateProvisionedProductPlanInput, callback?: (err: AWSError, data: ServiceCatalog.Types.CreateProvisionedProductPlanOutput) => void): Request<ServiceCatalog.Types.CreateProvisionedProductPlanOutput, AWSError>;
|
122
122
|
/**
|
123
|
-
* Creates a plan. A plan includes the list of resources to be created (when provisioning a new product) or modified (when updating a provisioned product) when the plan is executed. You can create one plan
|
123
|
+
* Creates a plan. A plan includes the list of resources to be created (when provisioning a new product) or modified (when updating a provisioned product) when the plan is executed. You can create one plan for each provisioned product. To create a plan for an existing provisioned product, the product status must be AVAILABLE or TAINTED. To view the resource changes in the change set, use DescribeProvisionedProductPlan. To create or modify the provisioned product, use ExecuteProvisionedProductPlan.
|
124
124
|
*/
|
125
125
|
createProvisionedProductPlan(callback?: (err: AWSError, data: ServiceCatalog.Types.CreateProvisionedProductPlanOutput) => void): Request<ServiceCatalog.Types.CreateProvisionedProductPlanOutput, AWSError>;
|
126
126
|
/**
|
@@ -340,11 +340,11 @@ declare class ServiceCatalog extends Service {
|
|
340
340
|
*/
|
341
341
|
describeTagOption(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeTagOptionOutput) => void): Request<ServiceCatalog.Types.DescribeTagOptionOutput, AWSError>;
|
342
342
|
/**
|
343
|
-
* Disable portfolio sharing through
|
343
|
+
* Disable portfolio sharing through the Organizations service. This command will not delete your current shares, but prevents you from creating new shares throughout your organization. Current shares are not kept in sync with your organization structure if the structure changes after calling this API. Only the management account in the organization can call this API. You cannot call this API if there are active delegated administrators in the organization. Note that a delegated administrator is not authorized to invoke DisableAWSOrganizationsAccess. If you share an Service Catalog portfolio in an organization within Organizations, and then disable Organizations access for Service Catalog, the portfolio access permissions will not sync with the latest changes to the organization structure. Specifically, accounts that you removed from the organization after disabling Service Catalog access will retain access to the previously shared portfolio.
|
344
344
|
*/
|
345
345
|
disableAWSOrganizationsAccess(params: ServiceCatalog.Types.DisableAWSOrganizationsAccessInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DisableAWSOrganizationsAccessOutput) => void): Request<ServiceCatalog.Types.DisableAWSOrganizationsAccessOutput, AWSError>;
|
346
346
|
/**
|
347
|
-
* Disable portfolio sharing through
|
347
|
+
* Disable portfolio sharing through the Organizations service. This command will not delete your current shares, but prevents you from creating new shares throughout your organization. Current shares are not kept in sync with your organization structure if the structure changes after calling this API. Only the management account in the organization can call this API. You cannot call this API if there are active delegated administrators in the organization. Note that a delegated administrator is not authorized to invoke DisableAWSOrganizationsAccess. If you share an Service Catalog portfolio in an organization within Organizations, and then disable Organizations access for Service Catalog, the portfolio access permissions will not sync with the latest changes to the organization structure. Specifically, accounts that you removed from the organization after disabling Service Catalog access will retain access to the previously shared portfolio.
|
348
348
|
*/
|
349
349
|
disableAWSOrganizationsAccess(callback?: (err: AWSError, data: ServiceCatalog.Types.DisableAWSOrganizationsAccessOutput) => void): Request<ServiceCatalog.Types.DisableAWSOrganizationsAccessOutput, AWSError>;
|
350
350
|
/**
|
@@ -388,11 +388,11 @@ declare class ServiceCatalog extends Service {
|
|
388
388
|
*/
|
389
389
|
disassociateTagOptionFromResource(callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociateTagOptionFromResourceOutput) => void): Request<ServiceCatalog.Types.DisassociateTagOptionFromResourceOutput, AWSError>;
|
390
390
|
/**
|
391
|
-
* Enable portfolio sharing feature through
|
391
|
+
* Enable portfolio sharing feature through Organizations. This API will allow Service Catalog to receive updates on your organization in order to sync your shares with the current structure. This API can only be called by the management account in the organization. When you call this API, Service Catalog calls organizations:EnableAWSServiceAccess on your behalf so that your shares stay in sync with any changes in your Organizations structure. Note that a delegated administrator is not authorized to invoke EnableAWSOrganizationsAccess. If you have previously disabled Organizations access for Service Catalog, and then enable access again, the portfolio access permissions might not sync with the latest changes to the organization structure. Specifically, accounts that you removed from the organization after disabling Service Catalog access, and before you enabled access again, can retain access to the previously shared portfolio. As a result, an account that has been removed from the organization might still be able to create or manage Amazon Web Services resources when it is no longer authorized to do so. Amazon Web Services is working to resolve this issue.
|
392
392
|
*/
|
393
393
|
enableAWSOrganizationsAccess(params: ServiceCatalog.Types.EnableAWSOrganizationsAccessInput, callback?: (err: AWSError, data: ServiceCatalog.Types.EnableAWSOrganizationsAccessOutput) => void): Request<ServiceCatalog.Types.EnableAWSOrganizationsAccessOutput, AWSError>;
|
394
394
|
/**
|
395
|
-
* Enable portfolio sharing feature through
|
395
|
+
* Enable portfolio sharing feature through Organizations. This API will allow Service Catalog to receive updates on your organization in order to sync your shares with the current structure. This API can only be called by the management account in the organization. When you call this API, Service Catalog calls organizations:EnableAWSServiceAccess on your behalf so that your shares stay in sync with any changes in your Organizations structure. Note that a delegated administrator is not authorized to invoke EnableAWSOrganizationsAccess. If you have previously disabled Organizations access for Service Catalog, and then enable access again, the portfolio access permissions might not sync with the latest changes to the organization structure. Specifically, accounts that you removed from the organization after disabling Service Catalog access, and before you enabled access again, can retain access to the previously shared portfolio. As a result, an account that has been removed from the organization might still be able to create or manage Amazon Web Services resources when it is no longer authorized to do so. Amazon Web Services is working to resolve this issue.
|
396
396
|
*/
|
397
397
|
enableAWSOrganizationsAccess(callback?: (err: AWSError, data: ServiceCatalog.Types.EnableAWSOrganizationsAccessOutput) => void): Request<ServiceCatalog.Types.EnableAWSOrganizationsAccessOutput, AWSError>;
|
398
398
|
/**
|
@@ -412,11 +412,11 @@ declare class ServiceCatalog extends Service {
|
|
412
412
|
*/
|
413
413
|
executeProvisionedProductServiceAction(callback?: (err: AWSError, data: ServiceCatalog.Types.ExecuteProvisionedProductServiceActionOutput) => void): Request<ServiceCatalog.Types.ExecuteProvisionedProductServiceActionOutput, AWSError>;
|
414
414
|
/**
|
415
|
-
* Get the Access Status for
|
415
|
+
* Get the Access Status for Organizations portfolio share feature. This API can only be called by the management account in the organization or by a delegated admin.
|
416
416
|
*/
|
417
417
|
getAWSOrganizationsAccessStatus(params: ServiceCatalog.Types.GetAWSOrganizationsAccessStatusInput, callback?: (err: AWSError, data: ServiceCatalog.Types.GetAWSOrganizationsAccessStatusOutput) => void): Request<ServiceCatalog.Types.GetAWSOrganizationsAccessStatusOutput, AWSError>;
|
418
418
|
/**
|
419
|
-
* Get the Access Status for
|
419
|
+
* Get the Access Status for Organizations portfolio share feature. This API can only be called by the management account in the organization or by a delegated admin.
|
420
420
|
*/
|
421
421
|
getAWSOrganizationsAccessStatus(callback?: (err: AWSError, data: ServiceCatalog.Types.GetAWSOrganizationsAccessStatusOutput) => void): Request<ServiceCatalog.Types.GetAWSOrganizationsAccessStatusOutput, AWSError>;
|
422
422
|
/**
|
@@ -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 a Service Catalog provisioned product that is associated to a Service Catalog product and provisioning artifact. Once imported, all supported Service Catalog 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, IMPORT_ROLLBACK_COMPLETE. Import of the resource requires that the CloudFormation stack template matches the associated Service Catalog product provisioning artifact. 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 a Amazon Web Services Service Catalog provisioned product that is associated to a Amazon Web Services Service Catalog product and provisioning artifact. Once imported, all supported Amazon Web Services Service Catalog 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, IMPORT_ROLLBACK_COMPLETE. Import of the resource requires that the CloudFormation stack template matches the associated Amazon Web Services Service Catalog product provisioning artifact. The user or role that performs this operation must have the cloudformation:GetTemplate and cloudformation:DescribeStacks IAM policy permissions.
|
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 a Service Catalog provisioned product that is associated to a Service Catalog product and provisioning artifact. Once imported, all supported Service Catalog 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, IMPORT_ROLLBACK_COMPLETE. Import of the resource requires that the CloudFormation stack template matches the associated Service Catalog product provisioning artifact. 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 a Amazon Web Services Service Catalog provisioned product that is associated to a Amazon Web Services Service Catalog product and provisioning artifact. Once imported, all supported Amazon Web Services Service Catalog 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, IMPORT_ROLLBACK_COMPLETE. Import of the resource requires that the CloudFormation stack template matches the associated Amazon Web Services Service Catalog product provisioning artifact. The user or role that performs this operation must have the cloudformation:GetTemplate and cloudformation:DescribeStacks IAM policy permissions.
|
436
436
|
*/
|
437
437
|
importAsProvisionedProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.ImportAsProvisionedProductOutput) => void): Request<ServiceCatalog.Types.ImportAsProvisionedProductOutput, AWSError>;
|
438
438
|
/**
|
@@ -564,11 +564,11 @@ declare class ServiceCatalog extends Service {
|
|
564
564
|
*/
|
565
565
|
listServiceActionsForProvisioningArtifact(callback?: (err: AWSError, data: ServiceCatalog.Types.ListServiceActionsForProvisioningArtifactOutput) => void): Request<ServiceCatalog.Types.ListServiceActionsForProvisioningArtifactOutput, AWSError>;
|
566
566
|
/**
|
567
|
-
* Returns summary information about stack instances that are associated with the specified CFN_STACKSET type provisioned product. You can filter for stack instances that are associated with a specific
|
567
|
+
* Returns summary information about stack instances that are associated with the specified CFN_STACKSET type provisioned product. You can filter for stack instances that are associated with a specific Amazon Web Services account name or Region.
|
568
568
|
*/
|
569
569
|
listStackInstancesForProvisionedProduct(params: ServiceCatalog.Types.ListStackInstancesForProvisionedProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListStackInstancesForProvisionedProductOutput) => void): Request<ServiceCatalog.Types.ListStackInstancesForProvisionedProductOutput, AWSError>;
|
570
570
|
/**
|
571
|
-
* Returns summary information about stack instances that are associated with the specified CFN_STACKSET type provisioned product. You can filter for stack instances that are associated with a specific
|
571
|
+
* Returns summary information about stack instances that are associated with the specified CFN_STACKSET type provisioned product. You can filter for stack instances that are associated with a specific Amazon Web Services account name or Region.
|
572
572
|
*/
|
573
573
|
listStackInstancesForProvisionedProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.ListStackInstancesForProvisionedProductOutput) => void): Request<ServiceCatalog.Types.ListStackInstancesForProvisionedProductOutput, AWSError>;
|
574
574
|
/**
|
@@ -620,11 +620,11 @@ declare class ServiceCatalog extends Service {
|
|
620
620
|
*/
|
621
621
|
searchProductsAsAdmin(callback?: (err: AWSError, data: ServiceCatalog.Types.SearchProductsAsAdminOutput) => void): Request<ServiceCatalog.Types.SearchProductsAsAdminOutput, AWSError>;
|
622
622
|
/**
|
623
|
-
* Gets information about the provisioned products that meet the specified criteria.
|
623
|
+
* Gets information about the provisioned products that meet the specified criteria. To ensure a complete list of provisioned products and remove duplicate products, use sort-by createdTime. Here is a CLI example: aws servicecatalog search-provisioned-products --sort-by createdTime
|
624
624
|
*/
|
625
625
|
searchProvisionedProducts(params: ServiceCatalog.Types.SearchProvisionedProductsInput, callback?: (err: AWSError, data: ServiceCatalog.Types.SearchProvisionedProductsOutput) => void): Request<ServiceCatalog.Types.SearchProvisionedProductsOutput, AWSError>;
|
626
626
|
/**
|
627
|
-
* Gets information about the provisioned products that meet the specified criteria.
|
627
|
+
* Gets information about the provisioned products that meet the specified criteria. To ensure a complete list of provisioned products and remove duplicate products, use sort-by createdTime. Here is a CLI example: aws servicecatalog search-provisioned-products --sort-by createdTime
|
628
628
|
*/
|
629
629
|
searchProvisionedProducts(callback?: (err: AWSError, data: ServiceCatalog.Types.SearchProvisionedProductsOutput) => void): Request<ServiceCatalog.Types.SearchProvisionedProductsOutput, AWSError>;
|
630
630
|
/**
|
@@ -974,7 +974,7 @@ declare namespace ServiceCatalog {
|
|
974
974
|
*/
|
975
975
|
ProductId: Id;
|
976
976
|
/**
|
977
|
-
* The constraint parameters, in JSON format. The syntax depends on the constraint type as follows: LAUNCH You are required to specify either the RoleArn or the LocalRoleName but can't use both. Specify the RoleArn property as follows: {"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"} Specify the LocalRoleName property as follows: {"LocalRoleName": "SCBasicLaunchRole"} If you specify the LocalRoleName property, when an account uses the launch constraint, the IAM role with that name in the account will be used. This allows launch-role constraints to be account-agnostic so the administrator can create fewer resources per shared account. The given role name must exist in the account used to create the launch constraint and the account of the user who launches a product with this launch constraint. You cannot have both a LAUNCH and a STACKSET constraint. You also cannot have more than one LAUNCH constraint on a product and portfolio. NOTIFICATION Specify the NotificationArns property as follows: {"NotificationArns" : ["arn:aws:sns:us-east-1:123456789012:Topic"]} RESOURCE_UPDATE Specify the TagUpdatesOnProvisionedProduct property as follows: {"Version":"2.0","Properties":{"TagUpdateOnProvisionedProduct":"String"}} The TagUpdatesOnProvisionedProduct property accepts a string value of ALLOWED or NOT_ALLOWED. STACKSET Specify the Parameters property as follows: {"Version": "String", "Properties": {"AccountList": [ "String" ], "RegionList": [ "String" ], "AdminRole": "String", "ExecutionRole": "String"}} You cannot have both a LAUNCH and a STACKSET constraint. You also cannot have more than one STACKSET constraint on a product and portfolio. Products with a STACKSET constraint will launch an
|
977
|
+
* The constraint parameters, in JSON format. The syntax depends on the constraint type as follows: LAUNCH You are required to specify either the RoleArn or the LocalRoleName but can't use both. Specify the RoleArn property as follows: {"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"} Specify the LocalRoleName property as follows: {"LocalRoleName": "SCBasicLaunchRole"} If you specify the LocalRoleName property, when an account uses the launch constraint, the IAM role with that name in the account will be used. This allows launch-role constraints to be account-agnostic so the administrator can create fewer resources per shared account. The given role name must exist in the account used to create the launch constraint and the account of the user who launches a product with this launch constraint. You cannot have both a LAUNCH and a STACKSET constraint. You also cannot have more than one LAUNCH constraint on a product and portfolio. NOTIFICATION Specify the NotificationArns property as follows: {"NotificationArns" : ["arn:aws:sns:us-east-1:123456789012:Topic"]} RESOURCE_UPDATE Specify the TagUpdatesOnProvisionedProduct property as follows: {"Version":"2.0","Properties":{"TagUpdateOnProvisionedProduct":"String"}} The TagUpdatesOnProvisionedProduct property accepts a string value of ALLOWED or NOT_ALLOWED. STACKSET Specify the Parameters property as follows: {"Version": "String", "Properties": {"AccountList": [ "String" ], "RegionList": [ "String" ], "AdminRole": "String", "ExecutionRole": "String"}} You cannot have both a LAUNCH and a STACKSET constraint. You also cannot have more than one STACKSET constraint on a product and portfolio. Products with a STACKSET constraint will launch an CloudFormation stack set. TEMPLATE Specify the Rules property. For more information, see Template Constraint Rules.
|
978
978
|
*/
|
979
979
|
Parameters: ConstraintParameters;
|
980
980
|
/**
|
@@ -1050,11 +1050,11 @@ declare namespace ServiceCatalog {
|
|
1050
1050
|
*/
|
1051
1051
|
PortfolioId: Id;
|
1052
1052
|
/**
|
1053
|
-
* The
|
1053
|
+
* The Amazon Web Services account ID. For example, 123456789012.
|
1054
1054
|
*/
|
1055
1055
|
AccountId?: AccountId;
|
1056
1056
|
/**
|
1057
|
-
* The organization node to whom you are going to share.
|
1057
|
+
* The organization node to whom you are going to share. When you pass OrganizationNode, it creates PortfolioShare for all of the Amazon Web Services accounts that are associated to the OrganizationNode. The output returns a PortfolioShareToken, which enables the administrator to monitor the status of the PortfolioShare creation process.
|
1058
1058
|
*/
|
1059
1059
|
OrganizationNode?: OrganizationNode;
|
1060
1060
|
/**
|
@@ -1158,7 +1158,7 @@ declare namespace ServiceCatalog {
|
|
1158
1158
|
*/
|
1159
1159
|
ProductId: Id;
|
1160
1160
|
/**
|
1161
|
-
* A user-friendly name for the provisioned product. This value must be unique for the
|
1161
|
+
* A user-friendly name for the provisioned product. This value must be unique for the Amazon Web Services account and cannot be updated after the product is provisioned.
|
1162
1162
|
*/
|
1163
1163
|
ProvisionedProductName: ProvisionedProductName;
|
1164
1164
|
/**
|
@@ -1224,7 +1224,7 @@ declare namespace ServiceCatalog {
|
|
1224
1224
|
*/
|
1225
1225
|
ProvisioningArtifactDetail?: ProvisioningArtifactDetail;
|
1226
1226
|
/**
|
1227
|
-
* Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ]. The URL of the CloudFormation template in Amazon S3, in JSON format. LoadTemplateFromURL Use the URL of the CloudFormation template in Amazon S3 in JSON format. ImportFromPhysicalId Use the physical id of the resource that contains the template; currently supports CloudFormation stack ARN.
|
1227
|
+
* Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ]. The URL of the CloudFormation template in Amazon S3, Amazon Web Services CodeCommit, or GitHub in JSON format. LoadTemplateFromURL Use the URL of the CloudFormation template in Amazon S3, Amazon Web Services CodeCommit, or GitHub in JSON format. ImportFromPhysicalId Use the physical id of the resource that contains the template; currently supports CloudFormation stack ARN.
|
1228
1228
|
*/
|
1229
1229
|
Info?: ProvisioningArtifactInfo;
|
1230
1230
|
/**
|
@@ -1242,7 +1242,7 @@ declare namespace ServiceCatalog {
|
|
1242
1242
|
*/
|
1243
1243
|
DefinitionType: ServiceActionDefinitionType;
|
1244
1244
|
/**
|
1245
|
-
* The self-service action definition. Can be one of the following: Name The name of the
|
1245
|
+
* The self-service action definition. Can be one of the following: Name The name of the Amazon Web Services Systems Manager document (SSM document). For example, AWS-RestartEC2Instance. If you are using a shared SSM document, you must provide the ARN instead of the name. Version The Amazon Web Services Systems Manager automation document version. For example, "Version": "1" AssumeRole The Amazon Resource Name (ARN) of the role that performs the self-service actions on your behalf. For example, "AssumeRole": "arn:aws:iam::12345678910:role/ActionRole". To reuse the provisioned product launch role, set to "AssumeRole": "LAUNCH_ROLE". Parameters The list of parameters in JSON format. For example: [{\"Name\":\"InstanceId\",\"Type\":\"TARGET\"}] or [{\"Name\":\"InstanceId\",\"Type\":\"TEXT_VALUE\"}].
|
1246
1246
|
*/
|
1247
1247
|
Definition: ServiceActionDefinitionMap;
|
1248
1248
|
/**
|
@@ -1317,7 +1317,7 @@ declare namespace ServiceCatalog {
|
|
1317
1317
|
*/
|
1318
1318
|
PortfolioId: Id;
|
1319
1319
|
/**
|
1320
|
-
* The
|
1320
|
+
* The Amazon Web Services account ID.
|
1321
1321
|
*/
|
1322
1322
|
AccountId?: AccountId;
|
1323
1323
|
/**
|
@@ -1353,7 +1353,7 @@ declare namespace ServiceCatalog {
|
|
1353
1353
|
*/
|
1354
1354
|
PlanId: Id;
|
1355
1355
|
/**
|
1356
|
-
* If set to true,
|
1356
|
+
* If set to true, Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources.
|
1357
1357
|
*/
|
1358
1358
|
IgnoreErrors?: IgnoreErrors;
|
1359
1359
|
}
|
@@ -1708,7 +1708,7 @@ declare namespace ServiceCatalog {
|
|
1708
1708
|
*/
|
1709
1709
|
ProvisioningArtifactDetail?: ProvisioningArtifactDetail;
|
1710
1710
|
/**
|
1711
|
-
* The URL of the CloudFormation template in Amazon S3.
|
1711
|
+
* The URL of the CloudFormation template in Amazon S3, Amazon Web Services CodeCommit, or GitHub in JSON format.
|
1712
1712
|
*/
|
1713
1713
|
Info?: ProvisioningArtifactInfo;
|
1714
1714
|
/**
|
@@ -1764,7 +1764,7 @@ declare namespace ServiceCatalog {
|
|
1764
1764
|
*/
|
1765
1765
|
TagOptions?: TagOptionSummaries;
|
1766
1766
|
/**
|
1767
|
-
* An object that contains information about preferences, such as
|
1767
|
+
* An object that contains information about preferences, such as Regions and accounts, for the provisioning artifact.
|
1768
1768
|
*/
|
1769
1769
|
ProvisioningArtifactPreferences?: ProvisioningArtifactPreferences;
|
1770
1770
|
/**
|
@@ -1984,7 +1984,7 @@ declare namespace ServiceCatalog {
|
|
1984
1984
|
*/
|
1985
1985
|
AcceptLanguage?: AcceptLanguage;
|
1986
1986
|
/**
|
1987
|
-
* A map of all self-service action parameters and their values. If a provided parameter is of a special type, such as TARGET, the provided value will override the default value generated by
|
1987
|
+
* A map of all self-service action parameters and their values. If a provided parameter is of a special type, such as TARGET, the provided value will override the default value generated by Service Catalog. If the parameters field is not provided, no additional parameters are passed and default values will be used for any special parameters such as TARGET.
|
1988
1988
|
*/
|
1989
1989
|
Parameters?: ExecutionParameterMap;
|
1990
1990
|
}
|
@@ -2099,7 +2099,7 @@ declare namespace ServiceCatalog {
|
|
2099
2099
|
*/
|
2100
2100
|
ProvisioningArtifactId: Id;
|
2101
2101
|
/**
|
2102
|
-
* The user-friendly name of the provisioned product. The value must be unique for the
|
2102
|
+
* The user-friendly name of the provisioned product. The value must be unique for the Amazon Web Services account. The name cannot be updated after the product is provisioned.
|
2103
2103
|
*/
|
2104
2104
|
ProvisionedProductName: ProvisionedProductName;
|
2105
2105
|
/**
|
@@ -2319,7 +2319,7 @@ declare namespace ServiceCatalog {
|
|
2319
2319
|
}
|
2320
2320
|
export interface ListPortfolioAccessOutput {
|
2321
2321
|
/**
|
2322
|
-
* Information about the
|
2322
|
+
* Information about the Amazon Web Services accounts with access to the portfolio.
|
2323
2323
|
*/
|
2324
2324
|
AccountIds?: AccountIds;
|
2325
2325
|
/**
|
@@ -2873,7 +2873,7 @@ declare namespace ServiceCatalog {
|
|
2873
2873
|
*/
|
2874
2874
|
ShortDescription?: ProductViewShortDescription;
|
2875
2875
|
/**
|
2876
|
-
* The product type. Contact the product administrator for the significance of this value. If this value is MARKETPLACE, the product was created by
|
2876
|
+
* The product type. Contact the product administrator for the significance of this value. If this value is MARKETPLACE, the product was created by Amazon Web Services Marketplace.
|
2877
2877
|
*/
|
2878
2878
|
Type?: ProductType;
|
2879
2879
|
/**
|
@@ -2931,7 +2931,7 @@ declare namespace ServiceCatalog {
|
|
2931
2931
|
*/
|
2932
2932
|
PathName?: PortfolioDisplayName;
|
2933
2933
|
/**
|
2934
|
-
* A user-friendly name for the provisioned product. This value must be unique for the
|
2934
|
+
* A user-friendly name for the provisioned product. This value must be unique for the Amazon Web Services account and cannot be updated after the product is provisioned.
|
2935
2935
|
*/
|
2936
2936
|
ProvisionedProductName: ProvisionedProductName;
|
2937
2937
|
/**
|
@@ -3241,7 +3241,7 @@ declare namespace ServiceCatalog {
|
|
3241
3241
|
*/
|
3242
3242
|
Description?: ProvisioningArtifactName;
|
3243
3243
|
/**
|
3244
|
-
* The type of provisioning artifact. CLOUD_FORMATION_TEMPLATE -
|
3244
|
+
* 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
|
3245
3245
|
*/
|
3246
3246
|
Type?: ProvisioningArtifactType;
|
3247
3247
|
/**
|
@@ -3304,11 +3304,11 @@ declare namespace ServiceCatalog {
|
|
3304
3304
|
export type ProvisioningArtifactParameters = ProvisioningArtifactParameter[];
|
3305
3305
|
export interface ProvisioningArtifactPreferences {
|
3306
3306
|
/**
|
3307
|
-
* One or more
|
3307
|
+
* One or more Amazon Web Services accounts where stack instances are deployed from the stack set. These accounts can be scoped in ProvisioningPreferences$StackSetAccounts and UpdateProvisioningPreferences$StackSetAccounts. Applicable only to a CFN_STACKSET provisioned product type.
|
3308
3308
|
*/
|
3309
3309
|
StackSetAccounts?: StackSetAccounts;
|
3310
3310
|
/**
|
3311
|
-
* One or more
|
3311
|
+
* One or more Amazon Web Services Regions where stack instances are deployed from the stack set. These Regions can be scoped in ProvisioningPreferences$StackSetRegions and UpdateProvisioningPreferences$StackSetRegions. Applicable only to a CFN_STACKSET provisioned product type.
|
3312
3312
|
*/
|
3313
3313
|
StackSetRegions?: StackSetRegions;
|
3314
3314
|
}
|
@@ -3322,15 +3322,15 @@ declare namespace ServiceCatalog {
|
|
3322
3322
|
*/
|
3323
3323
|
Description?: ProvisioningArtifactDescription;
|
3324
3324
|
/**
|
3325
|
-
* Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the CloudFormation template in Amazon S3. Specify the URL in JSON format as follows: "LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..." ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: “arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
|
3325
|
+
* Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the CloudFormation template in Amazon S3, Amazon Web Services CodeCommit, or GitHub in JSON format. Specify the URL in JSON format as follows: "LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..." ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: “arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
|
3326
3326
|
*/
|
3327
3327
|
Info: ProvisioningArtifactInfo;
|
3328
3328
|
/**
|
3329
|
-
* The type of provisioning artifact. CLOUD_FORMATION_TEMPLATE -
|
3329
|
+
* 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
|
3330
3330
|
*/
|
3331
3331
|
Type?: ProvisioningArtifactType;
|
3332
3332
|
/**
|
3333
|
-
* If set to true,
|
3333
|
+
* If set to true, Amazon Web Services Service Catalog stops validating the specified provisioning artifact even if it is invalid.
|
3334
3334
|
*/
|
3335
3335
|
DisableTemplateValidation?: DisableTemplateValidation;
|
3336
3336
|
}
|
@@ -3355,7 +3355,7 @@ declare namespace ServiceCatalog {
|
|
3355
3355
|
*/
|
3356
3356
|
CreatedTime?: ProvisioningArtifactCreatedTime;
|
3357
3357
|
/**
|
3358
|
-
* The metadata for the provisioning artifact. This is used with
|
3358
|
+
* The metadata for the provisioning artifact. This is used with Amazon Web Services Marketplace products.
|
3359
3359
|
*/
|
3360
3360
|
ProvisioningArtifactMetadata?: ProvisioningArtifactInfo;
|
3361
3361
|
}
|
@@ -3385,19 +3385,19 @@ declare namespace ServiceCatalog {
|
|
3385
3385
|
export type ProvisioningParameters = ProvisioningParameter[];
|
3386
3386
|
export interface ProvisioningPreferences {
|
3387
3387
|
/**
|
3388
|
-
* One or more
|
3388
|
+
* One or more Amazon Web Services accounts where the provisioned product will be available. Applicable only to a CFN_STACKSET provisioned product type. The specified accounts should be within the list of accounts from the STACKSET constraint. To get the list of accounts in the STACKSET constraint, use the DescribeProvisioningParameters operation. If no values are specified, the default value is all acounts from the STACKSET constraint.
|
3389
3389
|
*/
|
3390
3390
|
StackSetAccounts?: StackSetAccounts;
|
3391
3391
|
/**
|
3392
|
-
* One or more
|
3392
|
+
* One or more Amazon Web Services Regions where the provisioned product will be available. Applicable only to a CFN_STACKSET provisioned product type. The specified Regions should be within the list of Regions from the STACKSET constraint. To get the list of Regions in the STACKSET constraint, use the DescribeProvisioningParameters operation. If no values are specified, the default value is all Regions from the STACKSET constraint.
|
3393
3393
|
*/
|
3394
3394
|
StackSetRegions?: StackSetRegions;
|
3395
3395
|
/**
|
3396
|
-
* The number of accounts, per
|
3396
|
+
* The number of accounts, per Region, for which this operation can fail before Service Catalog stops the operation in that Region. If the operation is stopped in a Region, Service Catalog doesn't attempt the operation in any subsequent Regions. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetFailureToleranceCount or StackSetFailureTolerancePercentage, but not both. The default value is 0 if no value is specified.
|
3397
3397
|
*/
|
3398
3398
|
StackSetFailureToleranceCount?: StackSetFailureToleranceCount;
|
3399
3399
|
/**
|
3400
|
-
* The percentage of accounts, per
|
3400
|
+
* The percentage of accounts, per Region, for which this stack operation can fail before Service Catalog stops the operation in that Region. If the operation is stopped in a Region, Service Catalog doesn't attempt the operation in any subsequent Regions. When calculating the number of accounts based on the specified percentage, Service Catalog rounds down to the next whole number. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetFailureToleranceCount or StackSetFailureTolerancePercentage, but not both.
|
3401
3401
|
*/
|
3402
3402
|
StackSetFailureTolerancePercentage?: StackSetFailureTolerancePercentage;
|
3403
3403
|
/**
|
@@ -3405,7 +3405,7 @@ declare namespace ServiceCatalog {
|
|
3405
3405
|
*/
|
3406
3406
|
StackSetMaxConcurrencyCount?: StackSetMaxConcurrencyCount;
|
3407
3407
|
/**
|
3408
|
-
* The maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage,
|
3408
|
+
* The maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, Service Catalog rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, Service Catalog sets the number as 1 instead. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetMaxConcurrentCount or StackSetMaxConcurrentPercentage, but not both.
|
3409
3409
|
*/
|
3410
3410
|
StackSetMaxConcurrencyPercentage?: StackSetMaxConcurrencyPercentage;
|
3411
3411
|
}
|
@@ -3866,11 +3866,11 @@ declare namespace ServiceCatalog {
|
|
3866
3866
|
export type SourceProvisioningArtifactPropertiesMap = {[key: string]: ProvisioningArtifactPropertyValue};
|
3867
3867
|
export interface StackInstance {
|
3868
3868
|
/**
|
3869
|
-
* The name of the
|
3869
|
+
* The name of the Amazon Web Services account that the stack instance is associated with.
|
3870
3870
|
*/
|
3871
3871
|
Account?: AccountId;
|
3872
3872
|
/**
|
3873
|
-
* The name of the
|
3873
|
+
* The name of the Amazon Web Services Region that the stack instance is associated with.
|
3874
3874
|
*/
|
3875
3875
|
Region?: Region;
|
3876
3876
|
/**
|
@@ -3926,7 +3926,7 @@ declare namespace ServiceCatalog {
|
|
3926
3926
|
*/
|
3927
3927
|
Id?: TagOptionId;
|
3928
3928
|
/**
|
3929
|
-
* The
|
3929
|
+
* The Amazon Web Services account Id of the owner account that created the TagOption.
|
3930
3930
|
*/
|
3931
3931
|
Owner?: Owner;
|
3932
3932
|
}
|
@@ -3962,7 +3962,7 @@ declare namespace ServiceCatalog {
|
|
3962
3962
|
*/
|
3963
3963
|
TerminateToken: IdempotencyToken;
|
3964
3964
|
/**
|
3965
|
-
* If set to true,
|
3965
|
+
* If set to true, Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources.
|
3966
3966
|
*/
|
3967
3967
|
IgnoreErrors?: IgnoreErrors;
|
3968
3968
|
/**
|
@@ -3995,7 +3995,7 @@ declare namespace ServiceCatalog {
|
|
3995
3995
|
*/
|
3996
3996
|
Description?: ConstraintDescription;
|
3997
3997
|
/**
|
3998
|
-
* The constraint parameters, in JSON format. The syntax depends on the constraint type as follows: LAUNCH You are required to specify either the RoleArn or the LocalRoleName but can't use both. Specify the RoleArn property as follows: {"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"} Specify the LocalRoleName property as follows: {"LocalRoleName": "SCBasicLaunchRole"} If you specify the LocalRoleName property, when an account uses the launch constraint, the IAM role with that name in the account will be used. This allows launch-role constraints to be account-agnostic so the administrator can create fewer resources per shared account. The given role name must exist in the account used to create the launch constraint and the account of the user who launches a product with this launch constraint. You cannot have both a LAUNCH and a STACKSET constraint. You also cannot have more than one LAUNCH constraint on a product and portfolio. NOTIFICATION Specify the NotificationArns property as follows: {"NotificationArns" : ["arn:aws:sns:us-east-1:123456789012:Topic"]} RESOURCE_UPDATE Specify the TagUpdatesOnProvisionedProduct property as follows: {"Version":"2.0","Properties":{"TagUpdateOnProvisionedProduct":"String"}} The TagUpdatesOnProvisionedProduct property accepts a string value of ALLOWED or NOT_ALLOWED. STACKSET Specify the Parameters property as follows: {"Version": "String", "Properties": {"AccountList": [ "String" ], "RegionList": [ "String" ], "AdminRole": "String", "ExecutionRole": "String"}} You cannot have both a LAUNCH and a STACKSET constraint. You also cannot have more than one STACKSET constraint on a product and portfolio. Products with a STACKSET constraint will launch an
|
3998
|
+
* The constraint parameters, in JSON format. The syntax depends on the constraint type as follows: LAUNCH You are required to specify either the RoleArn or the LocalRoleName but can't use both. Specify the RoleArn property as follows: {"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"} Specify the LocalRoleName property as follows: {"LocalRoleName": "SCBasicLaunchRole"} If you specify the LocalRoleName property, when an account uses the launch constraint, the IAM role with that name in the account will be used. This allows launch-role constraints to be account-agnostic so the administrator can create fewer resources per shared account. The given role name must exist in the account used to create the launch constraint and the account of the user who launches a product with this launch constraint. You cannot have both a LAUNCH and a STACKSET constraint. You also cannot have more than one LAUNCH constraint on a product and portfolio. NOTIFICATION Specify the NotificationArns property as follows: {"NotificationArns" : ["arn:aws:sns:us-east-1:123456789012:Topic"]} RESOURCE_UPDATE Specify the TagUpdatesOnProvisionedProduct property as follows: {"Version":"2.0","Properties":{"TagUpdateOnProvisionedProduct":"String"}} The TagUpdatesOnProvisionedProduct property accepts a string value of ALLOWED or NOT_ALLOWED. STACKSET Specify the Parameters property as follows: {"Version": "String", "Properties": {"AccountList": [ "String" ], "RegionList": [ "String" ], "AdminRole": "String", "ExecutionRole": "String"}} You cannot have both a LAUNCH and a STACKSET constraint. You also cannot have more than one STACKSET constraint on a product and portfolio. Products with a STACKSET constraint will launch an CloudFormation stack set. TEMPLATE Specify the Rules property. For more information, see Template Constraint Rules.
|
3999
3999
|
*/
|
4000
4000
|
Parameters?: ConstraintParameters;
|
4001
4001
|
}
|
@@ -4063,7 +4063,7 @@ declare namespace ServiceCatalog {
|
|
4063
4063
|
*/
|
4064
4064
|
PortfolioId: Id;
|
4065
4065
|
/**
|
4066
|
-
* The
|
4066
|
+
* The Amazon Web Services account Id of the recipient account. This field is required when updating an external account to account type share.
|
4067
4067
|
*/
|
4068
4068
|
AccountId?: AccountId;
|
4069
4069
|
OrganizationNode?: OrganizationNode;
|
@@ -4208,7 +4208,7 @@ declare namespace ServiceCatalog {
|
|
4208
4208
|
*/
|
4209
4209
|
ProvisionedProductId: Id;
|
4210
4210
|
/**
|
4211
|
-
* A map that contains the provisioned product properties to be updated. The LAUNCH_ROLE key accepts role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only a role ARN is valid. A user ARN is invalid. The OWNER key accepts user ARNs and role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product. The administrator can change the owner of a provisioned product to another IAM
|
4211
|
+
* A map that contains the provisioned product properties to be updated. The LAUNCH_ROLE key accepts role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only a role ARN is valid. A user ARN is invalid. The OWNER key accepts IAM user ARNs, IAM role ARNs, and STS assumed-role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product. The administrator can change the owner of a provisioned product to another IAM or STS entity within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory. If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.
|
4212
4212
|
*/
|
4213
4213
|
ProvisionedProductProperties: ProvisionedProductProperties;
|
4214
4214
|
/**
|
@@ -4270,7 +4270,7 @@ declare namespace ServiceCatalog {
|
|
4270
4270
|
*/
|
4271
4271
|
ProvisioningArtifactDetail?: ProvisioningArtifactDetail;
|
4272
4272
|
/**
|
4273
|
-
* The URL of the CloudFormation template in Amazon S3.
|
4273
|
+
* The URL of the CloudFormation template in Amazon S3, Amazon Web Services CodeCommit, or GitHub in JSON format.
|
4274
4274
|
*/
|
4275
4275
|
Info?: ProvisioningArtifactInfo;
|
4276
4276
|
/**
|
@@ -4295,19 +4295,19 @@ declare namespace ServiceCatalog {
|
|
4295
4295
|
export type UpdateProvisioningParameters = UpdateProvisioningParameter[];
|
4296
4296
|
export interface UpdateProvisioningPreferences {
|
4297
4297
|
/**
|
4298
|
-
* One or more
|
4298
|
+
* One or more Amazon Web Services accounts that will have access to the provisioned product. Applicable only to a CFN_STACKSET provisioned product type. The Amazon Web Services accounts specified should be within the list of accounts in the STACKSET constraint. To get the list of accounts in the STACKSET constraint, use the DescribeProvisioningParameters operation. If no values are specified, the default value is all accounts from the STACKSET constraint.
|
4299
4299
|
*/
|
4300
4300
|
StackSetAccounts?: StackSetAccounts;
|
4301
4301
|
/**
|
4302
|
-
* One or more
|
4302
|
+
* One or more Amazon Web Services Regions where the provisioned product will be available. Applicable only to a CFN_STACKSET provisioned product type. The specified Regions should be within the list of Regions from the STACKSET constraint. To get the list of Regions in the STACKSET constraint, use the DescribeProvisioningParameters operation. If no values are specified, the default value is all Regions from the STACKSET constraint.
|
4303
4303
|
*/
|
4304
4304
|
StackSetRegions?: StackSetRegions;
|
4305
4305
|
/**
|
4306
|
-
* The number of accounts, per
|
4306
|
+
* The number of accounts, per Region, for which this operation can fail before Service Catalog stops the operation in that Region. If the operation is stopped in a Region, Service Catalog doesn't attempt the operation in any subsequent Regions. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetFailureToleranceCount or StackSetFailureTolerancePercentage, but not both. The default value is 0 if no value is specified.
|
4307
4307
|
*/
|
4308
4308
|
StackSetFailureToleranceCount?: StackSetFailureToleranceCount;
|
4309
4309
|
/**
|
4310
|
-
* The percentage of accounts, per
|
4310
|
+
* The percentage of accounts, per Region, for which this stack operation can fail before Service Catalog stops the operation in that Region. If the operation is stopped in a Region, Service Catalog doesn't attempt the operation in any subsequent Regions. When calculating the number of accounts based on the specified percentage, Service Catalog rounds down to the next whole number. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetFailureToleranceCount or StackSetFailureTolerancePercentage, but not both.
|
4311
4311
|
*/
|
4312
4312
|
StackSetFailureTolerancePercentage?: StackSetFailureTolerancePercentage;
|
4313
4313
|
/**
|
@@ -4315,11 +4315,11 @@ declare namespace ServiceCatalog {
|
|
4315
4315
|
*/
|
4316
4316
|
StackSetMaxConcurrencyCount?: StackSetMaxConcurrencyCount;
|
4317
4317
|
/**
|
4318
|
-
* The maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage,
|
4318
|
+
* The maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, Service Catalog rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, Service Catalog sets the number as 1 instead. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Applicable only to a CFN_STACKSET provisioned product type. Conditional: You must specify either StackSetMaxConcurrentCount or StackSetMaxConcurrentPercentage, but not both.
|
4319
4319
|
*/
|
4320
4320
|
StackSetMaxConcurrencyPercentage?: StackSetMaxConcurrencyPercentage;
|
4321
4321
|
/**
|
4322
|
-
* Determines what action
|
4322
|
+
* Determines what action Service Catalog performs to a stack set or a stack instance represented by the provisioned product. The default value is UPDATE if nothing is specified. Applicable only to a CFN_STACKSET provisioned product type. CREATE Creates a new stack instance in the stack set represented by the provisioned product. In this case, only new stack instances are created based on accounts and Regions; if new ProductId or ProvisioningArtifactID are passed, they will be ignored. UPDATE Updates the stack set represented by the provisioned product and also its stack instances. DELETE Deletes a stack instance in the stack set represented by the provisioned product.
|
4323
4323
|
*/
|
4324
4324
|
StackSetOperationType?: StackSetOperationType;
|
4325
4325
|
}
|
@@ -187,6 +187,14 @@ declare class Wisdom extends Service {
|
|
187
187
|
* Removes the specified recommendations from the specified assistant's queue of newly available recommendations. You can use this API in conjunction with GetRecommendations and a waitTimeSeconds input for long-polling behavior and avoiding duplicate recommendations.
|
188
188
|
*/
|
189
189
|
notifyRecommendationsReceived(callback?: (err: AWSError, data: Wisdom.Types.NotifyRecommendationsReceivedResponse) => void): Request<Wisdom.Types.NotifyRecommendationsReceivedResponse, AWSError>;
|
190
|
+
/**
|
191
|
+
* Submits feedback to Wisdom. The feedback is used to improve future recommendations from GetRecommendations or results from QueryAssistant. Feedback can be resubmitted up to 6 hours after submission.
|
192
|
+
*/
|
193
|
+
putFeedback(params: Wisdom.Types.PutFeedbackRequest, callback?: (err: AWSError, data: Wisdom.Types.PutFeedbackResponse) => void): Request<Wisdom.Types.PutFeedbackResponse, AWSError>;
|
194
|
+
/**
|
195
|
+
* Submits feedback to Wisdom. The feedback is used to improve future recommendations from GetRecommendations or results from QueryAssistant. Feedback can be resubmitted up to 6 hours after submission.
|
196
|
+
*/
|
197
|
+
putFeedback(callback?: (err: AWSError, data: Wisdom.Types.PutFeedbackResponse) => void): Request<Wisdom.Types.PutFeedbackResponse, AWSError>;
|
190
198
|
/**
|
191
199
|
* Performs a manual search against the specified assistant. To retrieve recommendations for an assistant, use GetRecommendations.
|
192
200
|
*/
|
@@ -779,6 +787,12 @@ declare namespace Wisdom {
|
|
779
787
|
*/
|
780
788
|
text?: SensitiveString;
|
781
789
|
}
|
790
|
+
export interface FeedbackData {
|
791
|
+
/**
|
792
|
+
* The relevance of the target this feedback is for.
|
793
|
+
*/
|
794
|
+
relevance: Relevance;
|
795
|
+
}
|
782
796
|
export interface Filter {
|
783
797
|
/**
|
784
798
|
* The field on which to filter.
|
@@ -1168,6 +1182,46 @@ declare namespace Wisdom {
|
|
1168
1182
|
recommendationIds?: RecommendationIdList;
|
1169
1183
|
}
|
1170
1184
|
export type ObjectFieldsList = NonEmptyString[];
|
1185
|
+
export interface PutFeedbackRequest {
|
1186
|
+
/**
|
1187
|
+
* The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
|
1188
|
+
*/
|
1189
|
+
assistantId: UuidOrArn;
|
1190
|
+
/**
|
1191
|
+
* The feedback.
|
1192
|
+
*/
|
1193
|
+
feedback: FeedbackData;
|
1194
|
+
/**
|
1195
|
+
* The identifier of a recommendation. or The identifier of the result data.
|
1196
|
+
*/
|
1197
|
+
targetId: String;
|
1198
|
+
/**
|
1199
|
+
* The type of the targetId for which The feedback. is targeted.
|
1200
|
+
*/
|
1201
|
+
targetType: TargetType;
|
1202
|
+
}
|
1203
|
+
export interface PutFeedbackResponse {
|
1204
|
+
/**
|
1205
|
+
* The Amazon Resource Name (ARN) of the Wisdom assistant.
|
1206
|
+
*/
|
1207
|
+
assistantArn: UuidOrArn;
|
1208
|
+
/**
|
1209
|
+
* The identifier of the Wisdom assistant.
|
1210
|
+
*/
|
1211
|
+
assistantId: Uuid;
|
1212
|
+
/**
|
1213
|
+
* The feedback.
|
1214
|
+
*/
|
1215
|
+
feedback: FeedbackData;
|
1216
|
+
/**
|
1217
|
+
* The identifier of a recommendation. or The identifier of the result data.
|
1218
|
+
*/
|
1219
|
+
targetId: Uuid;
|
1220
|
+
/**
|
1221
|
+
* The type of the targetId for which The feedback. is targeted.
|
1222
|
+
*/
|
1223
|
+
targetType: TargetType;
|
1224
|
+
}
|
1171
1225
|
export interface QueryAssistantRequest {
|
1172
1226
|
/**
|
1173
1227
|
* The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
|
@@ -1260,6 +1314,7 @@ declare namespace Wisdom {
|
|
1260
1314
|
export type RecommendationTriggerList = RecommendationTrigger[];
|
1261
1315
|
export type RecommendationTriggerType = "QUERY"|string;
|
1262
1316
|
export type RecommendationType = "KNOWLEDGE_CONTENT"|string;
|
1317
|
+
export type Relevance = "HELPFUL"|"NOT_HELPFUL"|string;
|
1263
1318
|
export type RelevanceLevel = "HIGH"|"MEDIUM"|"LOW"|string;
|
1264
1319
|
export type RelevanceScore = number;
|
1265
1320
|
export interface RemoveKnowledgeBaseTemplateUriRequest {
|
@@ -1452,6 +1507,7 @@ declare namespace Wisdom {
|
|
1452
1507
|
}
|
1453
1508
|
export type TagValue = string;
|
1454
1509
|
export type Tags = {[key: string]: TagValue};
|
1510
|
+
export type TargetType = "RECOMMENDATION"|"RESULT"|string;
|
1455
1511
|
export interface UntagResourceRequest {
|
1456
1512
|
/**
|
1457
1513
|
* The Amazon Resource Name (ARN) of the resource.
|