Interface CfnRotationSchedule.ExternalSecretRotationMetadataItemProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRotationSchedule.ExternalSecretRotationMetadataItemProperty.Jsii$Proxy
Enclosing class:
CfnRotationSchedule

@Stability(Stable) public static interface CfnRotationSchedule.ExternalSecretRotationMetadataItemProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.secretsmanager.*;
 ExternalSecretRotationMetadataItemProperty externalSecretRotationMetadataItemProperty = ExternalSecretRotationMetadataItemProperty.builder()
         .key("key")
         .value("value")
         .build();
 

See Also: