interface LatestRevisionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnConfigurationPropsMixin.LatestRevisionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnConfigurationPropsMixin_LatestRevisionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnConfigurationPropsMixin.LatestRevisionProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnConfigurationPropsMixin.LatestRevisionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnConfigurationPropsMixin » LatestRevisionProperty |
Describes a configuration revision.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as msk } from '@aws-cdk/cfn-property-mixins';
const latestRevisionProperty: msk.CfnConfigurationPropsMixin.LatestRevisionProperty = {
creationTime: 'creationTime',
description: 'description',
revision: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| creation | string | The time when the configuration revision was created. |
| description? | string | The description of the configuration revision. |
| revision? | number | The revision number. |
creationTime?
Type:
string
(optional)
The time when the configuration revision was created.
description?
Type:
string
(optional)
The description of the configuration revision.
revision?
Type:
number
(optional)
The revision number.

.NET
Go
Java
Python
TypeScript