interface BootstraplessSynthesizerProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.BootstraplessSynthesizerProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2#BootstraplessSynthesizerProps |
Java | software.amazon.awscdk.BootstraplessSynthesizerProps |
Python | aws_cdk.BootstraplessSynthesizerProps |
TypeScript (source) | aws-cdk-lib » BootstraplessSynthesizerProps |
Construction properties of BootstraplessSynthesizer.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
const bootstraplessSynthesizerProps: cdk.BootstraplessSynthesizerProps = {
cloudFormationExecutionRoleArn: 'cloudFormationExecutionRoleArn',
deployRoleArn: 'deployRoleArn',
qualifier: 'qualifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | string | The CFN execution Role ARN to use. |
| deploy | string | The deploy Role ARN to use. |
| qualifier? | string | The qualifier used to specialize strings. |
cloudFormationExecutionRoleArn?
Type:
string
(optional, default: No CloudFormation role (use CLI credentials))
The CFN execution Role ARN to use.
deployRoleArn?
Type:
string
(optional, default: No deploy role (use CLI credentials))
The deploy Role ARN to use.
qualifier?
Type:
string
(optional, default: 'hnb659fds')
The qualifier used to specialize strings.
Can be used to specify custom bootstrapped role names

.NET
Go
Java
Python
TypeScript (