Show / Hide Table of Contents

Interface IBootstraplessSynthesizerProps

Construction properties of BootstraplessSynthesizer.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IBootstraplessSynthesizerProps
Syntax (vb)
Public Interface IBootstraplessSynthesizerProps
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK;

            var bootstraplessSynthesizerProps = new BootstraplessSynthesizerProps {
                CloudFormationExecutionRoleArn = "cloudFormationExecutionRoleArn",
                DeployRoleArn = "deployRoleArn",
                Qualifier = "qualifier"
            };

Synopsis

Properties

CloudFormationExecutionRoleArn

The CFN execution Role ARN to use.

DeployRoleArn

The deploy Role ARN to use.

Qualifier

The qualifier used to specialize strings.

Properties

CloudFormationExecutionRoleArn

The CFN execution Role ARN to use.

string? CloudFormationExecutionRoleArn { get; }
Property Value

string

Remarks

Default: - No CloudFormation role (use CLI credentials)

DeployRoleArn

The deploy Role ARN to use.

string? DeployRoleArn { get; }
Property Value

string

Remarks

Default: - No deploy role (use CLI credentials)

Qualifier

The qualifier used to specialize strings.

string? Qualifier { get; }
Property Value

string

Remarks

Can be used to specify custom bootstrapped role names

Default: 'hnb659fds'

Back to top Generated by DocFX