interface ConfigurationProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppConfig.ConfigurationProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappconfig#ConfigurationProfileReference |
Java | software.amazon.awscdk.interfaces.appconfig.ConfigurationProfileReference |
Python | aws_cdk.interfaces.aws_appconfig.ConfigurationProfileReference |
TypeScript | aws-cdk-lib » interfaces » aws_appconfig » ConfigurationProfileReference |
A reference to a ConfigurationProfile 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 interfaces_aws_appconfig } from 'aws-cdk-lib/interfaces';
const configurationProfileReference: interfaces_aws_appconfig.ConfigurationProfileReference = {
applicationId: 'applicationId',
configurationProfileId: 'configurationProfileId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationId of the ConfigurationProfile resource. |
| configuration | string | The ConfigurationProfileId of the ConfigurationProfile resource. |
applicationId
Type:
string
The ApplicationId of the ConfigurationProfile resource.
configurationProfileId
Type:
string
The ConfigurationProfileId of the ConfigurationProfile resource.

.NET
Go
Java
Python
TypeScript