Module Values.AwsEcsTaskDefinitionContainerDefinitionsLogConfigurationSecretOptionsDetailsSource

A secret to pass to the log configuration.

Sourcetype nonrec t = {
  1. name : NonEmptyString.t option;
    (*

    The name of the secret.

    *)
  2. valueFrom : NonEmptyString.t option;
    (*

    The secret to expose to the container. The value is either the full ARN of the Secrets Manager secret or the full ARN of the parameter in the Systems Manager Parameter Store.

    *)
}
Sourceval make : ?name:??? -> ?valueFrom:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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