interface ExternalSecretRotationMetadataItemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecretsManager.CfnRotationSchedulePropsMixin.ExternalSecretRotationMetadataItemProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecretsmanager#CfnRotationSchedulePropsMixin_ExternalSecretRotationMetadataItemProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.secretsmanager.CfnRotationSchedulePropsMixin.ExternalSecretRotationMetadataItemProperty |
Python | aws_cdk.cfn_property_mixins.aws_secretsmanager.CfnRotationSchedulePropsMixin.ExternalSecretRotationMetadataItemProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_secretsmanager » 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 { aws_secretsmanager as secretsmanager } from '@aws-cdk/cfn-property-mixins';
const externalSecretRotationMetadataItemProperty: secretsmanager.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