interface CfnStackSetConstraintMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ServiceCatalog.Mixins.CfnStackSetConstraintMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsservicecatalog/mixins#CfnStackSetConstraintMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.servicecatalog.mixins.CfnStackSetConstraintMixinProps |
Python | aws_cdk.mixins_preview.aws_servicecatalog.mixins.CfnStackSetConstraintMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_servicecatalog » mixins » CfnStackSetConstraintMixinProps |
Properties for CfnStackSetConstraintPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as servicecatalog_mixins } from '@aws-cdk/mixins-preview/aws-servicecatalog';
const cfnStackSetConstraintMixinProps: servicecatalog_mixins.CfnStackSetConstraintMixinProps = {
acceptLanguage: 'acceptLanguage',
accountList: ['accountList'],
adminRole: 'adminRole',
description: 'description',
executionRole: 'executionRole',
portfolioId: 'portfolioId',
productId: 'productId',
regionList: ['regionList'],
stackInstanceControl: 'stackInstanceControl',
};
Properties
| Name | Type | Description |
|---|---|---|
| accept | string | The language code. |
| account | string[] | One or more AWS accounts that will have access to the provisioned product. |
| admin | string | AdminRole ARN. |
| description? | string | The description of the constraint. |
| execution | string | ExecutionRole name. |
| portfolio | string | The portfolio identifier. |
| product | string | The product identifier. |
| region | string[] | One or more AWS Regions where the provisioned product will be available. |
| stack | string | Permission to create, update, and delete stack instances. |
acceptLanguage?
Type:
string
(optional)
The language code.
jp- Japanesezh- Chinese
accountList?
Type:
string[]
(optional)
One or more AWS accounts that will have access to the provisioned product.
adminRole?
Type:
string
(optional)
AdminRole ARN.
description?
Type:
string
(optional)
The description of the constraint.
executionRole?
Type:
string
(optional)
ExecutionRole name.
portfolioId?
Type:
string
(optional)
The portfolio identifier.
productId?
Type:
string
(optional)
The product identifier.
regionList?
Type:
string[]
(optional)
One or more AWS 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.
stackInstanceControl?
Type:
string
(optional)
Permission to create, update, and delete stack instances.
Choose from ALLOWED and NOT_ALLOWED.

.NET
Go
Java
Python
TypeScript