Values_0.CfnCreateTemplateProviderSourceThe CloudFormation template provider configuration for creating infrastructure resources.
type nonrec t = {templateName : CfnTemplateName.t;A unique identifier for the template within the project.
*)templateURL : CfnTemplateURL.t;The Amazon S3 URL of the CloudFormation template.
*)roleARN : RoleArn.t option;The IAM role that CloudFormation assumes when creating the stack.
*)parameters : CfnStackCreateParameters.t option;An array of CloudFormation stack parameters.
*)}val make :
?roleARN:??? ->
?parameters:??? ->
templateName:CfnTemplateName.t ->
templateURL:CfnTemplateURL.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of
(string * [> `String of CfnStackParameterKey.t ]) list ]
list
| `String of CfnTemplateName.t ])
list ]