class CfnCloudFormationProvisionedProductPropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ServiceCatalog.Mixins.CfnCloudFormationProvisionedProductPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsservicecatalog/mixins#CfnCloudFormationProvisionedProductPropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.servicecatalog.mixins.CfnCloudFormationProvisionedProductPropsMixin |
Python | aws_cdk.mixins_preview.aws_servicecatalog.mixins.CfnCloudFormationProvisionedProductPropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_servicecatalog » mixins » CfnCloudFormationProvisionedProductPropsMixin |
Implements
IMixin
Extends
Mixin
Provisions the specified product.
A provisioned product is a resourced instance of a product. For example, provisioning a product based on a AWS CloudFormation template launches a AWS CloudFormation stack and its underlying resources. You can check the status of this request using DescribeRecord .
If the request contains a tag key with an empty list of values, there is a tag conflict for that key. Do not include conflicted keys as tags, or this causes the error "Parameter validation failed: Missing required parameter in Tags[ N ]: Value ".
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins } from '@aws-cdk/mixins-preview';
import { mixins as servicecatalog_mixins } from '@aws-cdk/mixins-preview/aws-servicecatalog';
const cfnCloudFormationProvisionedProductPropsMixin = new servicecatalog_mixins.CfnCloudFormationProvisionedProductPropsMixin({
acceptLanguage: 'acceptLanguage',
notificationArns: ['notificationArns'],
pathId: 'pathId',
pathName: 'pathName',
productId: 'productId',
productName: 'productName',
provisionedProductName: 'provisionedProductName',
provisioningArtifactId: 'provisioningArtifactId',
provisioningArtifactName: 'provisioningArtifactName',
provisioningParameters: [{
key: 'key',
value: 'value',
}],
provisioningPreferences: {
stackSetAccounts: ['stackSetAccounts'],
stackSetFailureToleranceCount: 123,
stackSetFailureTolerancePercentage: 123,
stackSetMaxConcurrencyCount: 123,
stackSetMaxConcurrencyPercentage: 123,
stackSetOperationType: 'stackSetOperationType',
stackSetRegions: ['stackSetRegions'],
},
tags: [{
key: 'key',
value: 'value',
}],
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnCloudFormationProvisionedProductPropsMixin(props: CfnCloudFormationProvisionedProductMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Cloud Formation Provisioned Product Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::ServiceCatalog::CloudFormationProvisionedProduct.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): IConstruct
Parameters
- construct
IConstruct
Returns
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript