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"
            };

Synopsis

Properties

CloudFormationExecutionRoleArn

The CFN execution Role ARN to use.

DeployRoleArn

The deploy Role ARN to use.

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)

Back to top Generated by DocFX