interface EnvironmentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppConfig.EnvironmentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#EnvironmentReference |
Java | software.amazon.awscdk.services.appconfig.EnvironmentReference |
Python | aws_cdk.aws_appconfig.EnvironmentReference |
TypeScript | aws-cdk-lib » aws_appconfig » EnvironmentReference |
A reference to a Environment 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 environmentReference: appconfig.EnvironmentReference = {
applicationId: 'applicationId',
environmentId: 'environmentId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationId of the Environment resource. |
| environment | string | The EnvironmentId of the Environment resource. |
applicationId
Type:
string
The ApplicationId of the Environment resource.
environmentId
Type:
string
The EnvironmentId of the Environment resource.

.NET
Go
Java
Python
TypeScript