Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

connectparticipant Update models to latest #3540

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
* Copyright 2010-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
Expand Down Expand Up @@ -103,7 +103,9 @@ public interface AmazonConnectParticipant {
/**
* <p>
* Allows you to confirm that the attachment has been uploaded using the
* pre-signed URL provided in StartAttachmentUpload API.
* pre-signed URL provided in StartAttachmentUpload API. A conflict
* exception is thrown when an attachment with that identifier is already
* being uploaded.
* </p>
* <note>
* <p>
Expand Down Expand Up @@ -320,6 +322,38 @@ GetAttachmentResult getAttachment(GetAttachmentRequest getAttachmentRequest)
* "https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html"
* >Enable persistent chat</a>.
* </p>
* <p>
* If you have a process that consumes events in the transcript of an chat
* that has ended, note that chat transcripts contain the following event
* content types if the event has occurred during the chat session:
* </p>
* <ul>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.participant.left</code>
* </p>
* </li>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.participant.joined</code>
* </p>
* </li>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.chat.ended</code>
* </p>
* </li>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.transfer.succeeded</code>
* </p>
* </li>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.transfer.failed</code>
* </p>
* </li>
* </ul>
* <note>
* <p>
* <code>ConnectionToken</code> is used for invoking this API instead of
Expand Down Expand Up @@ -351,8 +385,22 @@ GetTranscriptResult getTranscript(GetTranscriptRequest getTranscriptRequest)
throws AmazonClientException, AmazonServiceException;

/**
* <note>
* <p>
* Sends an event.
* The
* <code>application/vnd.amazonaws.connect.event.connection.acknowledged</code>
* ContentType will no longer be supported starting December 31, 2024. This
* event has been migrated to the <a href=
* "https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CreateParticipantConnection.html"
* >CreateParticipantConnection</a> API using the
* <code>ConnectParticipant</code> field.
* </p>
* </note>
* <p>
* Sends an event. Message receipts are not supported when there are more
* than two active participants in the chat. Using the SendEvent API for
* message receipts when a supervisor is barged-in will result in a conflict
* exception.
* </p>
* <note>
* <p>
Expand All @@ -373,6 +421,7 @@ GetTranscriptResult getTranscript(GetTranscriptRequest getTranscriptRequest)
* @throws InternalServerException
* @throws ThrottlingException
* @throws ValidationException
* @throws ConflictException
* @throws AmazonClientException If any internal errors are encountered
* inside the client while attempting to make the request or
* handle the response. For example if a network connection is
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
* Copyright 2010-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
Expand Down Expand Up @@ -44,7 +44,9 @@ public interface AmazonConnectParticipantAsync extends AmazonConnectParticipant
/**
* <p>
* Allows you to confirm that the attachment has been uploaded using the
* pre-signed URL provided in StartAttachmentUpload API.
* pre-signed URL provided in StartAttachmentUpload API. A conflict
* exception is thrown when an attachment with that identifier is already
* being uploaded.
* </p>
* <note>
* <p>
Expand Down Expand Up @@ -83,7 +85,9 @@ Future<CompleteAttachmentUploadResult> completeAttachmentUploadAsync(
/**
* <p>
* Allows you to confirm that the attachment has been uploaded using the
* pre-signed URL provided in StartAttachmentUpload API.
* pre-signed URL provided in StartAttachmentUpload API. A conflict
* exception is thrown when an attachment with that identifier is already
* being uploaded.
* </p>
* <note>
* <p>
Expand Down Expand Up @@ -502,6 +506,38 @@ Future<GetAttachmentResult> getAttachmentAsync(GetAttachmentRequest getAttachmen
* "https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html"
* >Enable persistent chat</a>.
* </p>
* <p>
* If you have a process that consumes events in the transcript of an chat
* that has ended, note that chat transcripts contain the following event
* content types if the event has occurred during the chat session:
* </p>
* <ul>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.participant.left</code>
* </p>
* </li>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.participant.joined</code>
* </p>
* </li>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.chat.ended</code>
* </p>
* </li>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.transfer.succeeded</code>
* </p>
* </li>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.transfer.failed</code>
* </p>
* </li>
* </ul>
* <note>
* <p>
* <code>ConnectionToken</code> is used for invoking this API instead of
Expand Down Expand Up @@ -541,6 +577,38 @@ Future<GetTranscriptResult> getTranscriptAsync(GetTranscriptRequest getTranscrip
* "https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html"
* >Enable persistent chat</a>.
* </p>
* <p>
* If you have a process that consumes events in the transcript of an chat
* that has ended, note that chat transcripts contain the following event
* content types if the event has occurred during the chat session:
* </p>
* <ul>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.participant.left</code>
* </p>
* </li>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.participant.joined</code>
* </p>
* </li>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.chat.ended</code>
* </p>
* </li>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.transfer.succeeded</code>
* </p>
* </li>
* <li>
* <p>
* <code>application/vnd.amazonaws.connect.event.transfer.failed</code>
* </p>
* </li>
* </ul>
* <note>
* <p>
* <code>ConnectionToken</code> is used for invoking this API instead of
Expand Down Expand Up @@ -578,8 +646,22 @@ Future<GetTranscriptResult> getTranscriptAsync(GetTranscriptRequest getTranscrip
throws AmazonServiceException, AmazonClientException;

/**
* <note>
* <p>
* Sends an event.
* The
* <code>application/vnd.amazonaws.connect.event.connection.acknowledged</code>
* ContentType will no longer be supported starting December 31, 2024. This
* event has been migrated to the <a href=
* "https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CreateParticipantConnection.html"
* >CreateParticipantConnection</a> API using the
* <code>ConnectParticipant</code> field.
* </p>
* </note>
* <p>
* Sends an event. Message receipts are not supported when there are more
* than two active participants in the chat. Using the SendEvent API for
* message receipts when a supervisor is barged-in will result in a conflict
* exception.
* </p>
* <note>
* <p>
Expand All @@ -600,6 +682,7 @@ Future<GetTranscriptResult> getTranscriptAsync(GetTranscriptRequest getTranscrip
* @throws InternalServerException
* @throws ThrottlingException
* @throws ValidationException
* @throws ConflictException
* @throws AmazonClientException If any internal errors are encountered
* inside the client while attempting to make the request or
* handle the response. For example if a network connection is
Expand All @@ -612,8 +695,22 @@ Future<SendEventResult> sendEventAsync(SendEventRequest sendEventRequest)
throws AmazonServiceException, AmazonClientException;

/**
* <note>
* <p>
* Sends an event.
* The
* <code>application/vnd.amazonaws.connect.event.connection.acknowledged</code>
* ContentType will no longer be supported starting December 31, 2024. This
* event has been migrated to the <a href=
* "https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CreateParticipantConnection.html"
* >CreateParticipantConnection</a> API using the
* <code>ConnectParticipant</code> field.
* </p>
* </note>
* <p>
* Sends an event. Message receipts are not supported when there are more
* than two active participants in the chat. Using the SendEvent API for
* message receipts when a supervisor is barged-in will result in a conflict
* exception.
* </p>
* <note>
* <p>
Expand All @@ -638,6 +735,7 @@ Future<SendEventResult> sendEventAsync(SendEventRequest sendEventRequest)
* @throws InternalServerException
* @throws ThrottlingException
* @throws ValidationException
* @throws ConflictException
* @throws AmazonClientException If any internal errors are encountered
* inside the client while attempting to make the request or
* handle the response. For example if a network connection is
Expand Down
Loading