interface BootstraplessSynthesizerProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.BootstraplessSynthesizerProps |
Java | software.amazon.awscdk.core.BootstraplessSynthesizerProps |
Python | aws_cdk.core.BootstraplessSynthesizerProps |
TypeScript (source) | @aws-cdk/core » BootstraplessSynthesizerProps |
Construction properties of {@link 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/core';
const bootstraplessSynthesizerProps: cdk.BootstraplessSynthesizerProps = {
cloudFormationExecutionRoleArn: 'cloudFormationExecutionRoleArn',
deployRoleArn: 'deployRoleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | string | The CFN execution Role ARN to use. |
| deploy | string | The deploy Role ARN to use. |
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.

.NET
Java
Python
TypeScript (