Skip to content

Commit 26542c9

Browse files
author
awstools
committed
feat(client-connect): Amazon Connect now offers automated post-chat surveys triggered when customers end conversations. This captures timely feedback while experience is fresh, using either a no-code form builder or Amazon Lex-powered interactive surveys.
1 parent 038e6dd commit 26542c9

32 files changed

+543
-313
lines changed

clients/client-connect/src/commands/AssociateWorkspaceCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ export interface AssociateWorkspaceCommandInput extends AssociateWorkspaceReques
2727
export interface AssociateWorkspaceCommandOutput extends AssociateWorkspaceResponse, __MetadataBearer {}
2828

2929
/**
30-
* <p>Associates a workspace with one or more users or routing profiles, allowing them to access the workspace's configured views and pages.</p>
30+
* <p>Associates a workspace with one or more users or routing profiles, allowing them to access the workspace's
31+
* configured views and pages.</p>
3132
* @example
3233
* Use a bare-bones client and the command you need to make an API call.
3334
* ```javascript

clients/client-connect/src/commands/BatchCreateDataTableValueCommand.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ export interface BatchCreateDataTableValueCommandInput extends BatchCreateDataTa
2727
export interface BatchCreateDataTableValueCommandOutput extends BatchCreateDataTableValueResponse, __MetadataBearer {}
2828

2929
/**
30-
* <p>Creates values for attributes in a data table. The value may be a default or it may be associated with a primary value. The value must pass all customer defined validation as well as the default validation for the value type. The operation must conform to Batch Operation API Standards. Although the standard specifies that successful and failed entities are listed separately in the response, authorization fails if any primary values or attributes are unauthorized. The combination of primary values and the attribute name serve as the identifier for the individual item request.</p>
30+
* <p>Creates values for attributes in a data table. The value may be a default or it may be associated with a primary
31+
* value. The value must pass all customer defined validation as well as the default validation for the value type. The
32+
* operation must conform to Batch Operation API Standards. Although the standard specifies that successful and failed
33+
* entities are listed separately in the response, authorization fails if any primary values or attributes are
34+
* unauthorized. The combination of primary values and the attribute name serve as the identifier for the individual
35+
* item request.</p>
3136
* @example
3237
* Use a bare-bones client and the command you need to make an API call.
3338
* ```javascript

clients/client-connect/src/commands/BatchDeleteDataTableValueCommand.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ export interface BatchDeleteDataTableValueCommandInput extends BatchDeleteDataTa
2727
export interface BatchDeleteDataTableValueCommandOutput extends BatchDeleteDataTableValueResponse, __MetadataBearer {}
2828

2929
/**
30-
* <p>Deletes multiple values from a data table. API users may delete values at any time. When deletion is requested from the admin website, a warning is shown alerting the user of the most recent time the attribute and its values were accessed. System managed values are not deletable by customers.</p>
30+
* <p>Deletes multiple values from a data table. API users may delete values at any time. When deletion is requested
31+
* from the admin website, a warning is shown alerting the user of the most recent time the attribute and its values
32+
* were accessed. System managed values are not deletable by customers.</p>
3133
* @example
3234
* Use a bare-bones client and the command you need to make an API call.
3335
* ```javascript

clients/client-connect/src/commands/BatchDescribeDataTableValueCommand.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ export interface BatchDescribeDataTableValueCommandOutput
2929
__MetadataBearer {}
3030

3131
/**
32-
* <p>Retrieves multiple values from a data table without evaluating expressions. Returns the raw stored values along with metadata such as lock versions and modification timestamps. "Describe" is a deprecated term but is allowed to maintain consistency with existing operations.</p>
32+
* <p>Retrieves multiple values from a data table without evaluating expressions. Returns the raw stored values along
33+
* with metadata such as lock versions and modification timestamps. "Describe" is a deprecated term but is allowed to
34+
* maintain consistency with existing operations.</p>
3335
* @example
3436
* Use a bare-bones client and the command you need to make an API call.
3537
* ```javascript

clients/client-connect/src/commands/BatchUpdateDataTableValueCommand.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ export interface BatchUpdateDataTableValueCommandInput extends BatchUpdateDataTa
2727
export interface BatchUpdateDataTableValueCommandOutput extends BatchUpdateDataTableValueResponse, __MetadataBearer {}
2828

2929
/**
30-
* <p>Updates multiple data table values using all properties from BatchCreateDataTableValue. System managed values are not modifiable by customers. The operation requires proper lock versions to prevent concurrent modification conflicts.</p>
30+
* <p>Updates multiple data table values using all properties from BatchCreateDataTableValue. System managed values
31+
* are not modifiable by customers. The operation requires proper lock versions to prevent concurrent modification
32+
* conflicts.</p>
3133
* @example
3234
* Use a bare-bones client and the command you need to make an API call.
3335
* ```javascript

clients/client-connect/src/commands/CreateDataTableAttributeCommand.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ export interface CreateDataTableAttributeCommandInput extends CreateDataTableAtt
2727
export interface CreateDataTableAttributeCommandOutput extends CreateDataTableAttributeResponse, __MetadataBearer {}
2828

2929
/**
30-
* <p>Adds an attribute to an existing data table. Creating a new primary attribute uses the empty value for the specified value type for all existing records. This should not affect uniqueness of published data tables since the existing primary values will already be unique. Creating attributes does not create any values. System managed tables may not allow customers to create new attributes.</p>
30+
* <p>Adds an attribute to an existing data table. Creating a new primary attribute uses the empty value for the
31+
* specified value type for all existing records. This should not affect uniqueness of published data tables since the
32+
* existing primary values will already be unique. Creating attributes does not create any values. System managed tables
33+
* may not allow customers to create new attributes.</p>
3134
* @example
3235
* Use a bare-bones client and the command you need to make an API call.
3336
* ```javascript

clients/client-connect/src/commands/CreateDataTableCommand.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ export interface CreateDataTableCommandInput extends CreateDataTableRequest {}
2727
export interface CreateDataTableCommandOutput extends CreateDataTableResponse, __MetadataBearer {}
2828

2929
/**
30-
* <p>Creates a new data table with the specified properties. Supports the creation of all table properties except for attributes and values. A table with no attributes and values is a valid state for a table. The number of tables per instance is limited to 100 per instance. Customers can request an increase by using AWS Service Quotas.</p>
30+
* <p>Creates a new data table with the specified properties. Supports the creation of all table properties except for
31+
* attributes and values. A table with no attributes and values is a valid state for a table. The number of tables per
32+
* instance is limited to 100 per instance. Customers can request an increase by using AWS Service Quotas.</p>
3133
* @example
3234
* Use a bare-bones client and the command you need to make an API call.
3335
* ```javascript

clients/client-connect/src/commands/CreateWorkspaceCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ export interface CreateWorkspaceCommandInput extends CreateWorkspaceRequest {}
2727
export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, __MetadataBearer {}
2828

2929
/**
30-
* <p>Creates a workspace that defines the user experience by mapping views to pages. Workspaces can be assigned to users or routing profiles.</p>
30+
* <p>Creates a workspace that defines the user experience by mapping views to pages. Workspaces can be assigned to
31+
* users or routing profiles.</p>
3132
* @example
3233
* Use a bare-bones client and the command you need to make an API call.
3334
* ```javascript

clients/client-connect/src/commands/DeleteDataTableCommand.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ export interface DeleteDataTableCommandInput extends DeleteDataTableRequest {}
2727
export interface DeleteDataTableCommandOutput extends DeleteDataTableResponse, __MetadataBearer {}
2828

2929
/**
30-
* <p>Deletes a data table and all associated attributes, versions, audits, and values. Does not update any references to the data table, even from other data tables. This includes dynamic values and conditional validations. System managed data tables are not deletable by customers. API users may delete the table at any time. When deletion is requested from the admin website, a warning is shown alerting the user of the most recent time the table and its values were accessed.</p>
30+
* <p>Deletes a data table and all associated attributes, versions, audits, and values. Does not update any references
31+
* to the data table, even from other data tables. This includes dynamic values and conditional validations. System
32+
* managed data tables are not deletable by customers. API users may delete the table at any time. When deletion is
33+
* requested from the admin website, a warning is shown alerting the user of the most recent time the table and its
34+
* values were accessed.</p>
3135
* @example
3236
* Use a bare-bones client and the command you need to make an API call.
3337
* ```javascript

clients/client-connect/src/commands/DeleteWorkspacePageCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ export interface DeleteWorkspacePageCommandInput extends DeleteWorkspacePageRequ
2727
export interface DeleteWorkspacePageCommandOutput extends DeleteWorkspacePageResponse, __MetadataBearer {}
2828

2929
/**
30-
* <p>Removes the association between a view and a page in a workspace. The page will display the default view after deletion.</p>
30+
* <p>Removes the association between a view and a page in a workspace. The page will display the default view after
31+
* deletion.</p>
3132
* @example
3233
* Use a bare-bones client and the command you need to make an API call.
3334
* ```javascript

0 commit comments

Comments
 (0)