Module Values_0.CfnCreateTemplateProviderSource

The CloudFormation template provider configuration for creating infrastructure resources.

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

    A unique identifier for the template within the project.

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

    The Amazon S3 URL of the CloudFormation template.

    *)
  3. roleARN : RoleArn.t option;
    (*

    The IAM role that CloudFormation assumes when creating the stack.

    *)
  4. parameters : CfnStackCreateParameters.t option;
    (*

    An array of CloudFormation stack parameters.

    *)
}
Sourceval context_ : string
Sourceval make : ?roleARN:??? -> ?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