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

.NET
Go
Java
Python
TypeScript