BootstraplessSynthesizerProps¶
-
class
aws_cdk.core.
BootstraplessSynthesizerProps
(*, cloud_formation_execution_role_arn=None, deploy_role_arn=None)¶ Bases:
object
Construction properties of {@link BootstraplessSynthesizer}.
- Parameters
cloud_formation_execution_role_arn (
Optional
[str
]) – The CFN execution Role ARN to use. Default: - No CloudFormation role (use CLI credentials)deploy_role_arn (
Optional
[str
]) – The deploy Role ARN to use. Default: - No deploy role (use CLI credentials)
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.core as cdk bootstrapless_synthesizer_props = cdk.BootstraplessSynthesizerProps( cloud_formation_execution_role_arn="cloudFormationExecutionRoleArn", deploy_role_arn="deployRoleArn" )
Attributes
-
cloud_formation_execution_role_arn
¶ The CFN execution Role ARN to use.
- Default
No CloudFormation role (use CLI credentials)
- Return type
Optional
[str
]
-
deploy_role_arn
¶ The deploy Role ARN to use.
- Default
No deploy role (use CLI credentials)
- Return type
Optional
[str
]