Creates a template from existing resources that are not already managed with CloudFormation
Source:R/cloudformation_operations.R
cloudformation_create_generated_template.RdCreates a template from existing resources that are not already managed with CloudFormation. You can check the status of the template generation using the describe_generated_template API action.
See https://www.paws-r-sdk.com/docs/cloudformation_create_generated_template/ for full documentation.
Usage
cloudformation_create_generated_template(
Resources = NULL,
GeneratedTemplateName,
StackName = NULL,
TemplateConfiguration = NULL
)Arguments
- Resources
An optional list of resources to be included in the generated template.
If no resources are specified,the template will be created without any resources. Resources can be added to the template using the
update_generated_templateAPI action.- GeneratedTemplateName
[required] The name assigned to the generated template.
- StackName
An optional name or ARN of a stack to use as the base stack for the generated template.
- TemplateConfiguration
The configuration details of the generated template, including the
DeletionPolicyandUpdateReplacePolicy.