class UsingAppStagingSynthesizer
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AppStagingSynthesizer.Alpha.UsingAppStagingSynthesizer |
Go | github.com/aws/aws-cdk-go/appstagingsynthesizeralpha/v2#UsingAppStagingSynthesizer |
Java | software.amazon.awscdk.app.staging.synthesizer.alpha.UsingAppStagingSynthesizer |
Python | aws_cdk.app_staging_synthesizer_alpha.UsingAppStagingSynthesizer |
TypeScript (source) | @aws-cdk/app-staging-synthesizer-alpha ยป UsingAppStagingSynthesizer |
Implements
IConstruct, IDependable
Extends
Construct
This is a dummy construct meant to signify that a stack is utilizing the AppStagingSynthesizer.
It does not do anything, and is not meant to be created on its own. This construct will be a part of the construct tree only and not the Cfn template. The construct tree is then encoded in the AWS::CDK::Metadata resource of the stack and injested in our metrics like every other construct.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as app_staging_synthesizer_alpha from '@aws-cdk/app-staging-synthesizer-alpha';
const usingAppStagingSynthesizer = new app_staging_synthesizer_alpha.UsingAppStagingSynthesizer(this, 'MyUsingAppStagingSynthesizer');
Initializer
new UsingAppStagingSynthesizer(scope: Construct, id: string)
Parameters
- scope
Construct - id
string
Properties
| Name | Type | Description |
|---|---|---|
| node | Node | The tree node. |
node
Type:
Node
The tree node.
Methods
| Name | Description |
|---|---|
| to | Returns a string representation of this construct. |
| with(...mixins) | Applies one or more mixins to this construct. |
toString()
public toString(): string
Returns
string
Returns a string representation of this construct.
with(...mixins)
public with(...mixins: IMixin[]): IConstruct
Parameters
- mixins
IMixinโ The mixins to apply.
Returns
Applies one or more mixins to this construct.
Mixins are applied in order. The list of constructs is captured at the
start of the call, so constructs added by a mixin will not be visited.
Use multiple with() calls if subsequent mixins should apply to added
constructs.

.NET
Go
Java
Python
TypeScript (