interface DeploymentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppConfig.DeploymentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#DeploymentReference |
Java | software.amazon.awscdk.services.appconfig.DeploymentReference |
Python | aws_cdk.aws_appconfig.DeploymentReference |
TypeScript | aws-cdk-lib » aws_appconfig » DeploymentReference |
A reference to a Deployment resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appconfig as appconfig } from 'aws-cdk-lib';
const deploymentReference: appconfig.DeploymentReference = {
applicationId: 'applicationId',
deploymentNumber: 'deploymentNumber',
environmentId: 'environmentId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationId of the Deployment resource. |
| deployment | string | The DeploymentNumber of the Deployment resource. |
| environment | string | The EnvironmentId of the Deployment resource. |
applicationId
Type:
string
The ApplicationId of the Deployment resource.
deploymentNumber
Type:
string
The DeploymentNumber of the Deployment resource.
environmentId
Type:
string
The EnvironmentId of the Deployment resource.

.NET
Go
Java
Python
TypeScript