Module Values_2.DescribeTemplateRequestSource

Describes a template's metadata.

Sourcetype nonrec t = {
  1. awsAccountId : Values_1.AwsAccountId.t;
    (*

    The ID of the Amazon Web Services account that contains the template that you're describing.

    *)
  2. templateId : Values_0.ShortRestrictiveResourceId.t;
    (*

    The ID for the template.

    *)
  3. versionNumber : Values_1.VersionNumber.t option;
    (*

    (Optional) The number for the version to describe. If a VersionNumber parameter value isn't provided, the latest version of the template is described.

    *)
  4. aliasName : Values_0.AliasName.t option;
    (*

    The alias of the template that you want to describe. If you name a specific alias, you describe the version that the alias points to. You can specify the latest version of the template by providing the keyword $LATEST in the AliasName parameter. The keyword $PUBLISHED doesn't apply to templates.

    *)
}
Sourceval context_ : string
Sourceval make : ?versionNumber:??? -> ?aliasName:??? -> awsAccountId:Values_1.AwsAccountId.t -> templateId:Values_0.ShortRestrictiveResourceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Values_1.VersionNumber.t | `String of Values_1.AwsAccountId.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