interface CfnHostedConfigurationVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppConfig.Mixins.CfnHostedConfigurationVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappconfig/mixins#CfnHostedConfigurationVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appconfig.mixins.CfnHostedConfigurationVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_appconfig.mixins.CfnHostedConfigurationVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appconfig » mixins » CfnHostedConfigurationVersionMixinProps |
Properties for CfnHostedConfigurationVersionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appconfig_mixins } from '@aws-cdk/mixins-preview/aws-appconfig';
const cfnHostedConfigurationVersionMixinProps: appconfig_mixins.CfnHostedConfigurationVersionMixinProps = {
applicationId: 'applicationId',
configurationProfileId: 'configurationProfileId',
content: 'content',
contentType: 'contentType',
description: 'description',
latestVersionNumber: 123,
versionLabel: 'versionLabel',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The application ID. |
| configuration | string | The configuration profile ID. |
| content? | string | The configuration data, as bytes. |
| content | string | A standard MIME type describing the format of the configuration content. |
| description? | string | A description of the configuration. |
| latest | number | An optional locking token used to prevent race conditions from overwriting configuration updates when creating a new version. |
| version | string | A user-defined label for an AWS AppConfig hosted configuration version. |
applicationId?
Type:
string
(optional)
The application ID.
configurationProfileId?
Type:
string
(optional)
The configuration profile ID.
content?
Type:
string
(optional)
The configuration data, as bytes.
AWS AppConfig accepts any type of data, including text formats like JSON or TOML, or binary formats like protocol buffers or compressed data.
contentType?
Type:
string
(optional)
A standard MIME type describing the format of the configuration content.
For more information, see Content-Type .
description?
Type:
string
(optional)
A description of the configuration.
Due to HTTP limitations, this field only supports ASCII characters.
latestVersionNumber?
Type:
number
(optional)
An optional locking token used to prevent race conditions from overwriting configuration updates when creating a new version.
To ensure your data is not overwritten when creating multiple hosted configuration versions in rapid succession, specify the version number of the latest hosted configuration version.
versionLabel?
Type:
string
(optional)
A user-defined label for an AWS AppConfig hosted configuration version.

.NET
Go
Java
Python
TypeScript