Module Values_0.CfnUpdateTemplateProviderSource

Contains configuration details for updating an existing CloudFormation template provider in the project.

Sourcetype nonrec t = {
  1. templateName : CfnTemplateName.t;
    (*

    The unique identifier of the template to update within the project.

    *)
  2. templateURL : CfnTemplateURL.t;
    (*

    The Amazon S3 URL of the CloudFormation template.

    *)
  3. parameters : CfnStackUpdateParameters.t option;
    (*

    An array of CloudFormation stack parameters.

    *)
}
Sourceval context_ : string
Sourceval make : ?parameters:??? -> templateName:CfnTemplateName.t -> templateURL:CfnTemplateURL.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of CfnStackParameterKey.t ]) list ] list | `String of CfnTemplateName.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