interface IStagingResources
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AppStagingSynthesizer.Alpha.IStagingResources |
Go | github.com/aws/aws-cdk-go/appstagingsynthesizeralpha/v2#IStagingResources |
Java | software.amazon.awscdk.app.staging.synthesizer.alpha.IStagingResources |
Python | aws_cdk.app_staging_synthesizer_alpha.IStagingResources |
TypeScript (source) | @aws-cdk/app-staging-synthesizer-alpha ยป IStagingResources |
Implements
IDependable, IConstruct
Implemented by
Default
Staging Resource interface.
Properties
| Name | Type | Description |
|---|---|---|
| node | Node | The tree node. |
node
Type:
Node
The tree node.
Methods
| Name | Description |
|---|---|
| add | Return staging resource information for a docker asset. |
| add | Return staging resource information for a file asset. |
| with(...mixins) | Applies one or more mixins to this construct. |
addDockerImage(asset)
public addDockerImage(asset: DockerImageAssetSource): ImageStagingLocation
Parameters
- asset
DockerImage Asset Source
Returns
Return staging resource information for a docker asset.
addFile(asset)
public addFile(asset: FileAssetSource): FileStagingLocation
Parameters
- asset
FileAsset Source
Returns
Return staging resource information for a file asset.
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.

.NET
Go
Java
Python
TypeScript (