Module Values.AwsSecretsManagerSecretDetailsSource

Details about an Secrets Manager secret.

Sourcetype nonrec t = {
  1. rotationRules : AwsSecretsManagerSecretRotationRules.t option;
    (*

    Defines the rotation schedule for the secret.

    *)
  2. rotationOccurredWithinFrequency : Boolean.t option;
    (*

    Whether the rotation occurred within the specified rotation frequency.

    *)
  3. kmsKeyId : NonEmptyString.t option;
    (*

    The ARN, Key ID, or alias of the KMS key used to encrypt the SecretString or SecretBinary values for versions of this secret.

    *)
  4. rotationEnabled : Boolean.t option;
    (*

    Whether rotation is enabled.

    *)
  5. rotationLambdaArn : NonEmptyString.t option;
    (*

    The ARN of the Lambda function that rotates the secret.

    *)
  6. deleted : Boolean.t option;
    (*

    Whether the secret is deleted.

    *)
  7. name : NonEmptyString.t option;
    (*

    The name of the secret.

    *)
  8. description : NonEmptyString.t option;
    (*

    The user-provided description of the secret.

    *)
}
Sourceval make : ?rotationRules:??? -> ?rotationOccurredWithinFrequency:??? -> ?kmsKeyId:??? -> ?rotationEnabled:??? -> ?rotationLambdaArn:??? -> ?deleted:??? -> ?name:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) 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