Creates a new view with the possible status of SAVED or PUBLISHED
Source:R/connect_operations.R
connect_create_view.RdCreates a new view with the possible status of SAVED or PUBLISHED.
See https://www.paws-r-sdk.com/docs/connect_create_view/ for full documentation.
Usage
connect_create_view(
InstanceId,
ClientToken = NULL,
Status,
Content,
Description = NULL,
Name,
Tags = NULL
)Arguments
- InstanceId
[required] The identifier of the Connect Customer instance. You can find the instanceId in the ARN of the instance.
- ClientToken
A unique Id for each create view request to avoid duplicate view creation. For example, the view is idempotent ClientToken is provided.
- Status
[required] Indicates the view status as either
SAVEDorPUBLISHED. ThePUBLISHEDstatus will initiate validation on the content.- Content
[required] View content containing all content necessary to render a view except for runtime input data.
The total uncompressed content has a maximum file size of 400kB.
- Description
The description of the view.
- Name
[required] The name of the view.
The tags associated with the view resource (not specific to view version).These tags can be used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.