interface StagingRoles
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AppStagingSynthesizer.Alpha.StagingRoles |
Go | github.com/aws/aws-cdk-go/appstagingsynthesizeralpha/v2#StagingRoles |
Java | software.amazon.awscdk.app.staging.synthesizer.alpha.StagingRoles |
Python | aws_cdk.app_staging_synthesizer_alpha.StagingRoles |
TypeScript (source) | @aws-cdk/app-staging-synthesizer-alpha » StagingRoles |
Roles that are included in the Staging Stack (for access to Staging Resources).
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';
declare const bootstrapRole: app_staging_synthesizer_alpha.BootstrapRole;
const stagingRoles: app_staging_synthesizer_alpha.StagingRoles = {
dockerAssetPublishingRole: bootstrapRole,
fileAssetPublishingRole: bootstrapRole,
};
Properties
| Name | Type | Description |
|---|---|---|
| docker | Bootstrap | Docker Asset Publishing Role. |
| file | Bootstrap | File Asset Publishing Role. |
dockerAssetPublishingRole?
Type:
Bootstrap
(optional, default: staging stack creates a docker asset publishing role)
Docker Asset Publishing Role.
fileAssetPublishingRole?
Type:
Bootstrap
(optional, default: staging stack creates a file asset publishing role)
File Asset Publishing Role.

.NET
Go
Java
Python
TypeScript (