diff --git a/clients/client-connect/src/commands/DescribeRoutingProfileCommand.ts b/clients/client-connect/src/commands/DescribeRoutingProfileCommand.ts index d5b7f44afff0..31764167d392 100644 --- a/clients/client-connect/src/commands/DescribeRoutingProfileCommand.ts +++ b/clients/client-connect/src/commands/DescribeRoutingProfileCommand.ts @@ -66,6 +66,9 @@ export interface DescribeRoutingProfileCommandOutput extends DescribeRoutingProf * // LastModifiedTime: new Date("TIMESTAMP"), * // LastModifiedRegion: "STRING_VALUE", * // IsDefault: true || false, + * // AssociatedQueueIds: [ // AssociatedQueueIdList + * // "STRING_VALUE", + * // ], * // }, * // }; * diff --git a/clients/client-connect/src/commands/SearchRoutingProfilesCommand.ts b/clients/client-connect/src/commands/SearchRoutingProfilesCommand.ts index b881662a3e5e..f6d083b211b2 100644 --- a/clients/client-connect/src/commands/SearchRoutingProfilesCommand.ts +++ b/clients/client-connect/src/commands/SearchRoutingProfilesCommand.ts @@ -112,6 +112,9 @@ export interface SearchRoutingProfilesCommandOutput extends SearchRoutingProfile * // LastModifiedTime: new Date("TIMESTAMP"), * // LastModifiedRegion: "STRING_VALUE", * // IsDefault: true || false, + * // AssociatedQueueIds: [ // AssociatedQueueIdList + * // "STRING_VALUE", + * // ], * // }, * // ], * // NextToken: "STRING_VALUE", diff --git a/clients/client-connect/src/models/models_1.ts b/clients/client-connect/src/models/models_1.ts index afbdd0961b45..16906db4d8b4 100644 --- a/clients/client-connect/src/models/models_1.ts +++ b/clients/client-connect/src/models/models_1.ts @@ -1547,6 +1547,12 @@ export interface RoutingProfile { * @public */ IsDefault?: boolean; + + /** + *
The IDs of the associated queue.
+ * @public + */ + AssociatedQueueIds?: string[]; } /** diff --git a/clients/client-connect/src/models/models_2.ts b/clients/client-connect/src/models/models_2.ts index 50e291ad6dee..32f7b738c7f9 100644 --- a/clients/client-connect/src/models/models_2.ts +++ b/clients/client-connect/src/models/models_2.ts @@ -6093,8 +6093,8 @@ export interface RoutingProfileSearchCriteria { /** *A leaf node condition which can be used to specify a string condition.
*The currently supported values for FieldName
are name
,
- * description
, and resourceID
.
The currently supported values for FieldName
are
+ * associatedQueueIds
, name
, description
, and resourceID
.
Whether this a default routing profile.
" } + }, + "AssociatedQueueIds": { + "target": "com.amazonaws.connect#AssociatedQueueIdList", + "traits": { + "smithy.api#documentation": "The IDs of the associated queue.
" + } } }, "traits": { @@ -29121,7 +29133,7 @@ "StringCondition": { "target": "com.amazonaws.connect#StringCondition", "traits": { - "smithy.api#documentation": "A leaf node condition which can be used to specify a string condition.
\nThe currently supported values for FieldName
are name
,\n description
, and resourceID
.
A leaf node condition which can be used to specify a string condition.
\nThe currently supported values for FieldName
are\n associatedQueueIds
, name
, description
, and resourceID
.