Module Values.SecretsManagerSecretResourceDataSource

Attributes that define a secret resource, which references a secret from AWS Secrets Manager. AWS IoT Greengrass stores a local, encrypted copy of the secret on the Greengrass core, where it can be securely accessed by connectors and Lambda functions.

Sourcetype nonrec t = {
  1. aRN : string option;
    (*

    The ARN of the Secrets Manager secret to make available on the core. The value of the secret's latest version (represented by the ''AWSCURRENT'' staging label) is included by default.

    *)
  2. additionalStagingLabelsToDownload : string list option;
    (*

    Optional. The staging labels whose values you want to make available on the core, in addition to ''AWSCURRENT''.

    *)
}
Sourceval make : ?aRN:??? -> ?additionalStagingLabelsToDownload:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `String of string ]) 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