interface ExternalSecretRotationMetadataItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecretsManager.Mixins.CfnRotationSchedulePropsMixin.ExternalSecretRotationMetadataItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecretsmanager/mixins#CfnRotationSchedulePropsMixin_ExternalSecretRotationMetadataItemProperty |
Java | software.amazon.awscdk.mixins.preview.services.secretsmanager.mixins.CfnRotationSchedulePropsMixin.ExternalSecretRotationMetadataItemProperty |
Python | aws_cdk.mixins_preview.aws_secretsmanager.mixins.CfnRotationSchedulePropsMixin.ExternalSecretRotationMetadataItemProperty |
TypeScript | @aws-cdk/mixins-preview » aws_secretsmanager » mixins » CfnRotationSchedulePropsMixin » ExternalSecretRotationMetadataItemProperty |
The metadata needed to successfully rotate a managed external secret.
A list of key value pairs in JSON format specified by the partner. For more information, see Managed external secret partners .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as secretsmanager_mixins } from '@aws-cdk/mixins-preview/aws-secretsmanager';
const externalSecretRotationMetadataItemProperty: secretsmanager_mixins.CfnRotationSchedulePropsMixin.ExternalSecretRotationMetadataItemProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The key that identifies the item. |
| value? | string | The value of the specified item. |
key?
Type:
string
(optional)
The key that identifies the item.
value?
Type:
string
(optional)
The value of the specified item.

.NET
Go
Java
Python
TypeScript