Module Values.ExternalSecretRotationMetadataItemSource

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.

Sourcetype nonrec t = {
  1. key : ExternalSecretRotationMetadataItemKeyType.t option;
    (*

    The key that identifies the item.

    *)
  2. value : ExternalSecretRotationMetadataItemValueType.t option;
    (*

    The value of the specified item.

    *)
}
Sourceval make : ?key:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ExternalSecretRotationMetadataItemKeyType.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t