interface IConfiguration
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppConfig.IConfiguration |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#IConfiguration |
Java | software.amazon.awscdk.services.appconfig.IConfiguration |
Python | aws_cdk.aws_appconfig.IConfiguration |
TypeScript (source) | aws-cdk-lib » aws_appconfig » IConfiguration |
Implements
IDependable, IConstruct
Implemented by
Hosted, Sourced
Properties
| Name | Type | Description |
|---|---|---|
| application | IApplication | The application associated with the configuration. |
| configuration | string | The ID of the configuration profile. |
| node | Node | The tree node. |
| deploy | IEnvironment[] | The environments to deploy to. |
| deployment | IKey | The deployment key for the configuration. |
| deployment | IDeployment | The deployment strategy for the configuration. |
| description? | string | The description of the configuration. |
| name? | string | The name of the configuration. |
| type? | Configuration | The configuration type. |
| validators? | IValidator[] | The validators for the configuration. |
| version | string | The configuration version number. |
application
Type:
IApplication
The application associated with the configuration.
configurationProfileId
Type:
string
The ID of the configuration profile.
node
Type:
Node
The tree node.
deployTo?
Type:
IEnvironment[]
(optional)
The environments to deploy to.
deploymentKey?
Type:
IKey
(optional)
The deployment key for the configuration.
deploymentStrategy?
Type:
IDeployment
(optional)
The deployment strategy for the configuration.
description?
Type:
string
(optional)
The description of the configuration.
name?
Type:
string
(optional)
The name of the configuration.
type?
Type:
Configuration
(optional)
The configuration type.
validators?
Type:
IValidator[]
(optional)
The validators for the configuration.
versionNumber?
Type:
string
(optional)
The configuration version number.
Methods
| Name | Description |
|---|---|
| with(...mixins) | Applies one or more mixins to this construct. |
with(...mixins)
public with(...mixins: IMixin[]): IConstruct
Parameters
- mixins
IMixin— The mixins to apply.
Returns
Applies one or more mixins to this construct.
Mixins are applied in order. The list of constructs is captured at the start of the call, so constructs added by a mixin will not be visited.

.NET
Go
Java
Python
TypeScript (