interface CfnLaunchRoleConstraintMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ServiceCatalog.Mixins.CfnLaunchRoleConstraintMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsservicecatalog/mixins#CfnLaunchRoleConstraintMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.servicecatalog.mixins.CfnLaunchRoleConstraintMixinProps |
Python | aws_cdk.mixins_preview.aws_servicecatalog.mixins.CfnLaunchRoleConstraintMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_servicecatalog » mixins » CfnLaunchRoleConstraintMixinProps |
Properties for CfnLaunchRoleConstraintPropsMixin.
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 cfnLaunchRoleConstraintMixinProps: servicecatalog_mixins.CfnLaunchRoleConstraintMixinProps = {
acceptLanguage: 'acceptLanguage',
description: 'description',
localRoleName: 'localRoleName',
portfolioId: 'portfolioId',
productId: 'productId',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| accept | string | The language code. |
| description? | string | The description of the constraint. |
| local | string | You are required to specify either the RoleArn or the LocalRoleName but can't use both. |
| portfolio | string | The portfolio identifier. |
| product | string | The product identifier. |
| role | string | The ARN of the launch role. |
acceptLanguage?
Type:
string
(optional)
The language code.
jp- Japanesezh- Chinese
description?
Type:
string
(optional)
The description of the constraint.
localRoleName?
Type:
string
(optional)
You are required to specify either the RoleArn or the LocalRoleName but can't use both.
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.
portfolioId?
Type:
string
(optional)
The portfolio identifier.
productId?
Type:
string
(optional)
The product identifier.
roleArn?
Type:
string
(optional)
The ARN of the launch role.
You are required to specify RoleArn or LocalRoleName but can't use both.

.NET
Go
Java
Python
TypeScript