interface KeyValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Backup.Mixins.CfnRestoreTestingSelectionPropsMixin.KeyValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbackup/mixins#CfnRestoreTestingSelectionPropsMixin_KeyValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.backup.mixins.CfnRestoreTestingSelectionPropsMixin.KeyValueProperty |
Python | aws_cdk.mixins_preview.aws_backup.mixins.CfnRestoreTestingSelectionPropsMixin.KeyValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_backup » mixins » CfnRestoreTestingSelectionPropsMixin » KeyValueProperty |
Pair of two related strings.
Allowed characters are letters, white space, and numbers that can be represented in UTF-8 and the following characters: + - = . _ : /
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as backup_mixins } from '@aws-cdk/mixins-preview/aws-backup';
const keyValueProperty: backup_mixins.CfnRestoreTestingSelectionPropsMixin.KeyValueProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The tag key. |
| value? | string | The tag value. |
key?
Type:
string
(optional)
The tag key.
value?
Type:
string
(optional)
The tag value.

.NET
Go
Java
Python
TypeScript