Module Values.AwsCloudFormationStackOutputsDetailsSource

Provides information about the CloudFormation stack output.

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

    A user-defined description associated with the output.

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

    The key associated with the output.

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

    The value associated with the output.

    *)
}
Sourceval make : ?description:??? -> ?outputKey:??? -> ?outputValue:??? -> 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