Module Values_0.CfnTemplateProviderDetailSource

Details about a CloudFormation template provider configuration and associated provisioning information.

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

    The unique identifier of the template within the project.

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

    The Amazon S3 URL of the CloudFormation template.

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

    The IAM role used by CloudFormation to create the stack.

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

    An array of CloudFormation stack parameters.

    *)
  5. stackDetail : CfnStackDetail.t option;
    (*

    Information about the CloudFormation stack created by the template provider.

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