Updates the attributes of an existing template
Source:R/connectcases_operations.R
connectcases_update_template.RdUpdates the attributes of an existing template. The template attributes that can be modified include name, description, layoutConfiguration, requiredFields, and status. At least one of these attributes must not be null. If a null value is provided for a given attribute, that attribute is ignored and its current value is preserved.
See https://www.paws-r-sdk.com/docs/connectcases_update_template/ for full documentation.
Usage
connectcases_update_template(
domainId,
templateId,
name = NULL,
description = NULL,
layoutConfiguration = NULL,
requiredFields = NULL,
status = NULL,
rules = NULL,
tagPropagationConfigurations = NULL
)Arguments
- domainId
[required] The unique identifier of the Cases domain.
- templateId
[required] A unique identifier for the template.
- name
The name of the template. It must be unique per domain.
- description
A brief description of the template.
- layoutConfiguration
Configuration of layouts associated to the template.
- requiredFields
A list of fields that must contain a value for a case to be successfully created with this template.
- status
The status of the template.
- rules
A list of case rules (also known as case field conditions) on a template.
- tagPropagationConfigurations
Defines tag propagation configuration for resources created within a domain. Tags specified here will be automatically applied to resources being created for the specified resource type.