diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipant.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipant.java index 4d02d07180..9341169993 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipant.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipant.java @@ -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. @@ -103,7 +103,9 @@ public interface AmazonConnectParticipant { /** *

* 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. *

* *

@@ -320,6 +322,38 @@ GetAttachmentResult getAttachment(GetAttachmentRequest getAttachmentRequest) * "https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html" * >Enable persistent chat. *

+ *

+ * 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: + *

+ * * *

* ConnectionToken is used for invoking this API instead of @@ -351,8 +385,22 @@ GetTranscriptResult getTranscript(GetTranscriptRequest getTranscriptRequest) throws AmazonClientException, AmazonServiceException; /** + * *

- * Sends an event. + * The + * application/vnd.amazonaws.connect.event.connection.acknowledged + * ContentType will no longer be supported starting December 31, 2024. This + * event has been migrated to the CreateParticipantConnection API using the + * ConnectParticipant field. + *

+ *
+ *

+ * 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. *

* *

@@ -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 diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipantAsync.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipantAsync.java index e2c6ceff60..6fc13fb9ce 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipantAsync.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipantAsync.java @@ -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. @@ -44,7 +44,9 @@ public interface AmazonConnectParticipantAsync extends AmazonConnectParticipant /** *

* 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. *

* *

@@ -83,7 +85,9 @@ Future completeAttachmentUploadAsync( /** *

* 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. *

* *

@@ -502,6 +506,38 @@ Future getAttachmentAsync(GetAttachmentRequest getAttachmen * "https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html" * >Enable persistent chat. *

+ *

+ * 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: + *

+ *
    + *
  • + *

    + * application/vnd.amazonaws.connect.event.participant.left + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.participant.joined + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.chat.ended + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.transfer.succeeded + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.transfer.failed + *

    + *
  • + *
* *

* ConnectionToken is used for invoking this API instead of @@ -541,6 +577,38 @@ Future getTranscriptAsync(GetTranscriptRequest getTranscrip * "https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html" * >Enable persistent chat. *

+ *

+ * 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: + *

+ *
    + *
  • + *

    + * application/vnd.amazonaws.connect.event.participant.left + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.participant.joined + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.chat.ended + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.transfer.succeeded + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.transfer.failed + *

    + *
  • + *
* *

* ConnectionToken is used for invoking this API instead of @@ -578,8 +646,22 @@ Future getTranscriptAsync(GetTranscriptRequest getTranscrip throws AmazonServiceException, AmazonClientException; /** + * *

- * Sends an event. + * The + * application/vnd.amazonaws.connect.event.connection.acknowledged + * ContentType will no longer be supported starting December 31, 2024. This + * event has been migrated to the CreateParticipantConnection API using the + * ConnectParticipant field. + *

+ *
+ *

+ * 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. *

* *

@@ -600,6 +682,7 @@ Future 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 @@ -612,8 +695,22 @@ Future sendEventAsync(SendEventRequest sendEventRequest) throws AmazonServiceException, AmazonClientException; /** + * *

- * Sends an event. + * The + * application/vnd.amazonaws.connect.event.connection.acknowledged + * ContentType will no longer be supported starting December 31, 2024. This + * event has been migrated to the CreateParticipantConnection API using the + * ConnectParticipant field. + *

+ *
+ *

+ * 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. *

* *

@@ -638,6 +735,7 @@ Future 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 diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipantAsyncClient.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipantAsyncClient.java index 0d5c45c09e..f8a3030cf9 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipantAsyncClient.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipantAsyncClient.java @@ -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. @@ -148,7 +148,9 @@ public void shutdown() { /** *

* 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. *

* *

@@ -193,7 +195,9 @@ public CompleteAttachmentUploadResult call() throws Exception { /** *

* 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. *

* *

@@ -690,6 +694,38 @@ public GetAttachmentResult call() throws Exception { * "https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html" * >Enable persistent chat. *

+ *

+ * 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: + *

+ *
    + *
  • + *

    + * application/vnd.amazonaws.connect.event.participant.left + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.participant.joined + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.chat.ended + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.transfer.succeeded + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.transfer.failed + *

    + *
  • + *
* *

* ConnectionToken is used for invoking this API instead of @@ -736,6 +772,38 @@ public GetTranscriptResult call() throws Exception { * "https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html" * >Enable persistent chat. *

+ *

+ * 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: + *

+ *
    + *
  • + *

    + * application/vnd.amazonaws.connect.event.participant.left + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.participant.joined + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.chat.ended + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.transfer.succeeded + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.transfer.failed + *

    + *
  • + *
* *

* ConnectionToken is used for invoking this API instead of @@ -784,8 +852,22 @@ public GetTranscriptResult call() throws Exception { } /** + * *

- * Sends an event. + * The + * application/vnd.amazonaws.connect.event.connection.acknowledged + * ContentType will no longer be supported starting December 31, 2024. This + * event has been migrated to the CreateParticipantConnection API using the + * ConnectParticipant field. + *

+ *
+ *

+ * 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. *

* *

@@ -806,6 +888,7 @@ public GetTranscriptResult call() throws Exception { * @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 @@ -824,8 +907,22 @@ public SendEventResult call() throws Exception { } /** + * *

- * Sends an event. + * The + * application/vnd.amazonaws.connect.event.connection.acknowledged + * ContentType will no longer be supported starting December 31, 2024. This + * event has been migrated to the CreateParticipantConnection API using the + * ConnectParticipant field. + *

+ *
+ *

+ * 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. *

* *

@@ -846,6 +943,7 @@ public SendEventResult call() throws Exception { * @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 diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipantClient.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipantClient.java index 694037f8cb..653da437e2 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipantClient.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/AmazonConnectParticipantClient.java @@ -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. @@ -156,7 +156,9 @@ private static ClientConfiguration adjustClientConfiguration(ClientConfiguration /** *

* 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. *

* *

@@ -506,6 +508,38 @@ public GetAttachmentResult getAttachment(GetAttachmentRequest getAttachmentReque * "https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html" * >Enable persistent chat. *

+ *

+ * 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: + *

+ *
    + *
  • + *

    + * application/vnd.amazonaws.connect.event.participant.left + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.participant.joined + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.chat.ended + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.transfer.succeeded + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.transfer.failed + *

    + *
  • + *
* *

* ConnectionToken is used for invoking this API instead of @@ -563,8 +597,22 @@ public GetTranscriptResult getTranscript(GetTranscriptRequest getTranscriptReque } /** + * *

- * Sends an event. + * The + * application/vnd.amazonaws.connect.event.connection.acknowledged + * ContentType will no longer be supported starting December 31, 2024. This + * event has been migrated to the CreateParticipantConnection API using the + * ConnectParticipant field. + *

+ *
+ *

+ * 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. *

* *

@@ -585,6 +633,7 @@ public GetTranscriptResult getTranscript(GetTranscriptRequest getTranscriptReque * @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 diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/AccessDeniedException.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/AccessDeniedException.java index 32b9b36621..3311eacf9d 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/AccessDeniedException.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/AccessDeniedException.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ArtifactStatus.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ArtifactStatus.java index 4b550ca7b7..d5c7e82def 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ArtifactStatus.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ArtifactStatus.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/AttachmentItem.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/AttachmentItem.java index 64e084fe97..dac1d389fd 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/AttachmentItem.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/AttachmentItem.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ChatItemType.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ChatItemType.java index f09e45834e..a0b6b05b9f 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ChatItemType.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ChatItemType.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CompleteAttachmentUploadRequest.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CompleteAttachmentUploadRequest.java index 08c71ec531..61bfe16975 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CompleteAttachmentUploadRequest.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CompleteAttachmentUploadRequest.java @@ -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. @@ -22,7 +22,8 @@ /** *

* 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. *

* *

diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CompleteAttachmentUploadResult.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CompleteAttachmentUploadResult.java index 94907786f3..5921c72566 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CompleteAttachmentUploadResult.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CompleteAttachmentUploadResult.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ConflictException.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ConflictException.java index a9127a2c9a..f5a14ac419 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ConflictException.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ConflictException.java @@ -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. @@ -19,7 +19,8 @@ /** *

- * An attachment with that identifier is already being uploaded. + * The requested operation conflicts with the current state of a service + * resource associated with the request. *

*/ public class ConflictException extends AmazonServiceException { diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ConnectionCredentials.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ConnectionCredentials.java index 3272951ec5..dd2ce38d69 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ConnectionCredentials.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ConnectionCredentials.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ConnectionType.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ConnectionType.java index 9cbf4751fa..1610976c36 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ConnectionType.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ConnectionType.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CreateParticipantConnectionRequest.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CreateParticipantConnectionRequest.java index 702d0f9e58..32a15a5e10 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CreateParticipantConnectionRequest.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CreateParticipantConnectionRequest.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CreateParticipantConnectionResult.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CreateParticipantConnectionResult.java index dfa048c132..73454c4834 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CreateParticipantConnectionResult.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/CreateParticipantConnectionResult.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DescribeViewRequest.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DescribeViewRequest.java index 23965e7ac4..f03e048431 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DescribeViewRequest.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DescribeViewRequest.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DescribeViewResult.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DescribeViewResult.java index 45013f110e..2b81ed969d 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DescribeViewResult.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DescribeViewResult.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DisconnectParticipantRequest.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DisconnectParticipantRequest.java index 2e0156b1ad..8dc09b62f0 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DisconnectParticipantRequest.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DisconnectParticipantRequest.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DisconnectParticipantResult.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DisconnectParticipantResult.java index bf1b665829..a6267786dd 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DisconnectParticipantResult.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/DisconnectParticipantResult.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetAttachmentRequest.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetAttachmentRequest.java index 8d9768facf..d9964fcd56 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetAttachmentRequest.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetAttachmentRequest.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetAttachmentResult.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetAttachmentResult.java index 0f0673de43..68910ecef9 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetAttachmentResult.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetAttachmentResult.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetTranscriptRequest.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetTranscriptRequest.java index 19b2082881..528f74dbb0 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetTranscriptRequest.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetTranscriptRequest.java @@ -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. @@ -27,6 +27,38 @@ * "https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html" * >Enable persistent chat. *

+ *

+ * 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: + *

+ *
    + *
  • + *

    + * application/vnd.amazonaws.connect.event.participant.left + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.participant.joined + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.chat.ended + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.transfer.succeeded + *

    + *
  • + *
  • + *

    + * application/vnd.amazonaws.connect.event.transfer.failed + *

    + *
  • + *
* *

* ConnectionToken is used for invoking this API instead of diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetTranscriptResult.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetTranscriptResult.java index e7981faf4a..6613d7bd50 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetTranscriptResult.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/GetTranscriptResult.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/InternalServerException.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/InternalServerException.java index 769e4f1992..828d90907e 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/InternalServerException.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/InternalServerException.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/Item.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/Item.java index f2fff71682..e5004722ee 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/Item.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/Item.java @@ -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. @@ -105,7 +105,7 @@ public class Item implements Serializable { *

*

* Constraints:
- * Allowed Values: AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT + * Allowed Values: AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT, SUPERVISOR */ private String participantRole; @@ -611,7 +611,7 @@ public Item withDisplayName(String displayName) { *

*

* Constraints:
- * Allowed Values: AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT + * Allowed Values: AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT, SUPERVISOR * * @return

* The role of the sender. For example, is it a customer, agent, or @@ -629,7 +629,7 @@ public String getParticipantRole() { *

*

* Constraints:
- * Allowed Values: AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT + * Allowed Values: AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT, SUPERVISOR * * @param participantRole

* The role of the sender. For example, is it a customer, agent, @@ -650,7 +650,7 @@ public void setParticipantRole(String participantRole) { * together. *

* Constraints:
- * Allowed Values: AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT + * Allowed Values: AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT, SUPERVISOR * * @param participantRole

* The role of the sender. For example, is it a customer, agent, @@ -671,7 +671,7 @@ public Item withParticipantRole(String participantRole) { *

*

* Constraints:
- * Allowed Values: AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT + * Allowed Values: AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT, SUPERVISOR * * @param participantRole

* The role of the sender. For example, is it a customer, agent, @@ -692,7 +692,7 @@ public void setParticipantRole(ParticipantRole participantRole) { * together. *

* Constraints:
- * Allowed Values: AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT + * Allowed Values: AGENT, CUSTOMER, SYSTEM, CUSTOM_BOT, SUPERVISOR * * @param participantRole

* The role of the sender. For example, is it a customer, agent, diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/MessageMetadata.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/MessageMetadata.java index c69e865212..23d15a74eb 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/MessageMetadata.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/MessageMetadata.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ParticipantRole.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ParticipantRole.java index 4ebd0d35fe..815e4438f3 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ParticipantRole.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ParticipantRole.java @@ -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. @@ -26,7 +26,8 @@ public enum ParticipantRole { AGENT("AGENT"), CUSTOMER("CUSTOMER"), SYSTEM("SYSTEM"), - CUSTOM_BOT("CUSTOM_BOT"); + CUSTOM_BOT("CUSTOM_BOT"), + SUPERVISOR("SUPERVISOR"); private String value; @@ -46,6 +47,7 @@ public String toString() { enumMap.put("CUSTOMER", CUSTOMER); enumMap.put("SYSTEM", SYSTEM); enumMap.put("CUSTOM_BOT", CUSTOM_BOT); + enumMap.put("SUPERVISOR", SUPERVISOR); } /** diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/Receipt.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/Receipt.java index 52c66c05e8..5fbbd3979f 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/Receipt.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/Receipt.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ResourceNotFoundException.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ResourceNotFoundException.java index 6489c5c6db..6cf7b4b280 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ResourceNotFoundException.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ResourceNotFoundException.java @@ -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. @@ -39,7 +39,7 @@ public class ResourceNotFoundException extends AmazonServiceException { *

* Constraints:
* Allowed Values: CONTACT, CONTACT_FLOW, INSTANCE, PARTICIPANT, - * HIERARCHY_LEVEL, HIERARCHY_GROUP, USER + * HIERARCHY_LEVEL, HIERARCHY_GROUP, USER, PHONE_NUMBER */ private String resourceType; @@ -86,7 +86,7 @@ public void setResourceId(String resourceId) { *

* Constraints:
* Allowed Values: CONTACT, CONTACT_FLOW, INSTANCE, PARTICIPANT, - * HIERARCHY_LEVEL, HIERARCHY_GROUP, USER + * HIERARCHY_LEVEL, HIERARCHY_GROUP, USER, PHONE_NUMBER * * @return

* The type of Amazon Connect resource. @@ -104,7 +104,7 @@ public String getResourceType() { *

* Constraints:
* Allowed Values: CONTACT, CONTACT_FLOW, INSTANCE, PARTICIPANT, - * HIERARCHY_LEVEL, HIERARCHY_GROUP, USER + * HIERARCHY_LEVEL, HIERARCHY_GROUP, USER, PHONE_NUMBER * * @param resourceType

* The type of Amazon Connect resource. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ScanDirection.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ScanDirection.java index e97e70de28..1398f476df 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ScanDirection.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ScanDirection.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendEventRequest.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendEventRequest.java index dfc7d58166..247a5ef1f7 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendEventRequest.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendEventRequest.java @@ -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. @@ -20,8 +20,21 @@ import com.amazonaws.AmazonWebServiceRequest; /** + * + *

+ * The + * application/vnd.amazonaws.connect.event.connection.acknowledged + * ContentType will no longer be supported starting December 31, 2024. This + * event has been migrated to the CreateParticipantConnection API using the + * ConnectParticipant field. + *

+ *
*

- * Sends an event. + * 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. *

* *

@@ -48,7 +61,8 @@ public class SendEventRequest extends AmazonWebServiceRequest implements Seriali * *

  • *

    - * application/vnd.amazonaws.connect.event.connection.acknowledged + * application/vnd.amazonaws.connect.event.connection.acknowledged (will be + * deprecated on December 31, 2024) *

    *
  • *
  • @@ -121,7 +135,8 @@ public class SendEventRequest extends AmazonWebServiceRequest implements Seriali *
  • *
  • *

    - * application/vnd.amazonaws.connect.event.connection.acknowledged + * application/vnd.amazonaws.connect.event.connection.acknowledged (will be + * deprecated on December 31, 2024) *

    *
  • *
  • @@ -151,6 +166,7 @@ public class SendEventRequest extends AmazonWebServiceRequest implements Seriali *
  • *

    * application/vnd.amazonaws.connect.event.connection.acknowledged + * (will be deprecated on December 31, 2024) *

    *
  • *
  • @@ -181,7 +197,8 @@ public String getContentType() { *
  • *
  • *

    - * application/vnd.amazonaws.connect.event.connection.acknowledged + * application/vnd.amazonaws.connect.event.connection.acknowledged (will be + * deprecated on December 31, 2024) *

    *
  • *
  • @@ -211,7 +228,7 @@ public String getContentType() { *
  • *

    * application/vnd.amazonaws.connect.event.connection. - * acknowledged + * acknowledged (will be deprecated on December 31, 2024) *

    *
  • *
  • @@ -242,7 +259,8 @@ public void setContentType(String contentType) { *
  • *
  • *

    - * application/vnd.amazonaws.connect.event.connection.acknowledged + * application/vnd.amazonaws.connect.event.connection.acknowledged (will be + * deprecated on December 31, 2024) *

    *
  • *
  • @@ -275,7 +293,7 @@ public void setContentType(String contentType) { *
  • *

    * application/vnd.amazonaws.connect.event.connection. - * acknowledged + * acknowledged (will be deprecated on December 31, 2024) *

    *
  • *
  • diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendEventResult.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendEventResult.java index db373c3b98..21421b9429 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendEventResult.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendEventResult.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendMessageRequest.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendMessageRequest.java index 20ce87507b..8791d7330a 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendMessageRequest.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendMessageRequest.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendMessageResult.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendMessageResult.java index 3a7444087d..b5cb9085fb 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendMessageResult.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SendMessageResult.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ServiceQuotaExceededException.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ServiceQuotaExceededException.java index 364f035971..5e87047a78 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ServiceQuotaExceededException.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ServiceQuotaExceededException.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SortKey.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SortKey.java index 7df68969e5..2ec4edbc9c 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SortKey.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/SortKey.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/StartAttachmentUploadRequest.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/StartAttachmentUploadRequest.java index dbf9c203da..8fac1eb904 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/StartAttachmentUploadRequest.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/StartAttachmentUploadRequest.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/StartAttachmentUploadResult.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/StartAttachmentUploadResult.java index fdb75484c8..18fc7ef3a0 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/StartAttachmentUploadResult.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/StartAttachmentUploadResult.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/StartPosition.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/StartPosition.java index 6ec64d387f..42424eb688 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/StartPosition.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/StartPosition.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ThrottlingException.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ThrottlingException.java index 15244b034c..6c8c1ee7d8 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ThrottlingException.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ThrottlingException.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/UploadMetadata.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/UploadMetadata.java index ee95167c10..ab027c3c86 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/UploadMetadata.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/UploadMetadata.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ValidationException.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ValidationException.java index 12a7e18f27..e120a13862 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ValidationException.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ValidationException.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/View.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/View.java index 0d6e60f865..41e5f4229b 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/View.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/View.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ViewContent.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ViewContent.java index 83bbe65a66..2351865a14 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ViewContent.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/ViewContent.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/Websocket.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/Websocket.java index 13926b7dce..dd47747916 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/Websocket.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/Websocket.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/AccessDeniedExceptionUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/AccessDeniedExceptionUnmarshaller.java index 83064c31c0..626f5376fd 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/AccessDeniedExceptionUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/AccessDeniedExceptionUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/AttachmentItemJsonMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/AttachmentItemJsonMarshaller.java index ddee46ff11..449958147d 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/AttachmentItemJsonMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/AttachmentItemJsonMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/AttachmentItemJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/AttachmentItemJsonUnmarshaller.java index 0602463c59..75133eb237 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/AttachmentItemJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/AttachmentItemJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CompleteAttachmentUploadRequestMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CompleteAttachmentUploadRequestMarshaller.java index 6f81450879..83d6bcd687 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CompleteAttachmentUploadRequestMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CompleteAttachmentUploadRequestMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CompleteAttachmentUploadResultJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CompleteAttachmentUploadResultJsonUnmarshaller.java index 5b6740559a..a96e3dc6e0 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CompleteAttachmentUploadResultJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CompleteAttachmentUploadResultJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ConflictExceptionUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ConflictExceptionUnmarshaller.java index b04cdb97b2..dab5163dda 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ConflictExceptionUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ConflictExceptionUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ConnectionCredentialsJsonMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ConnectionCredentialsJsonMarshaller.java index fe5bf2d59f..2ad32f4358 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ConnectionCredentialsJsonMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ConnectionCredentialsJsonMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ConnectionCredentialsJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ConnectionCredentialsJsonUnmarshaller.java index d43c4b155c..a8613fc0b3 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ConnectionCredentialsJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ConnectionCredentialsJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CreateParticipantConnectionRequestMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CreateParticipantConnectionRequestMarshaller.java index 22e1a2407f..4157cb1419 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CreateParticipantConnectionRequestMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CreateParticipantConnectionRequestMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CreateParticipantConnectionResultJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CreateParticipantConnectionResultJsonUnmarshaller.java index 5a021dbf3a..96cc9b7f3c 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CreateParticipantConnectionResultJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/CreateParticipantConnectionResultJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DescribeViewRequestMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DescribeViewRequestMarshaller.java index c34ece73b0..8cfa55ffe7 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DescribeViewRequestMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DescribeViewRequestMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DescribeViewResultJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DescribeViewResultJsonUnmarshaller.java index 20a22fa619..7f11e0f112 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DescribeViewResultJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DescribeViewResultJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DisconnectParticipantRequestMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DisconnectParticipantRequestMarshaller.java index aa303cae08..e2779c543b 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DisconnectParticipantRequestMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DisconnectParticipantRequestMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DisconnectParticipantResultJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DisconnectParticipantResultJsonUnmarshaller.java index 2179014ffd..0dd018784f 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DisconnectParticipantResultJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/DisconnectParticipantResultJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetAttachmentRequestMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetAttachmentRequestMarshaller.java index d92f93ac94..8af00ecf45 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetAttachmentRequestMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetAttachmentRequestMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetAttachmentResultJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetAttachmentResultJsonUnmarshaller.java index 71cfabbb1b..1273b4fe8a 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetAttachmentResultJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetAttachmentResultJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetTranscriptRequestMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetTranscriptRequestMarshaller.java index c9a474f2ef..0bbce19b38 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetTranscriptRequestMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetTranscriptRequestMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetTranscriptResultJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetTranscriptResultJsonUnmarshaller.java index 30a5562ccf..7b1298e062 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetTranscriptResultJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/GetTranscriptResultJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/InternalServerExceptionUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/InternalServerExceptionUnmarshaller.java index ded358270e..3ec0bc7599 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/InternalServerExceptionUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/InternalServerExceptionUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ItemJsonMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ItemJsonMarshaller.java index 659936cc58..eb5f7115cb 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ItemJsonMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ItemJsonMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ItemJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ItemJsonUnmarshaller.java index eddb3b38a2..b0287ed087 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ItemJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ItemJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/MessageMetadataJsonMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/MessageMetadataJsonMarshaller.java index 9b3ff923ea..50db5efb14 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/MessageMetadataJsonMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/MessageMetadataJsonMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/MessageMetadataJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/MessageMetadataJsonUnmarshaller.java index 18b9fee951..d3aed317cf 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/MessageMetadataJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/MessageMetadataJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ReceiptJsonMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ReceiptJsonMarshaller.java index 313ed6cfcc..e46dd3eeb9 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ReceiptJsonMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ReceiptJsonMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ReceiptJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ReceiptJsonUnmarshaller.java index b8501e00ae..e8e01fe3ee 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ReceiptJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ReceiptJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ResourceNotFoundExceptionUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ResourceNotFoundExceptionUnmarshaller.java index 8b1775559e..52109d8e88 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ResourceNotFoundExceptionUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ResourceNotFoundExceptionUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendEventRequestMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendEventRequestMarshaller.java index 98c8296232..d04c313057 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendEventRequestMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendEventRequestMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendEventResultJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendEventResultJsonUnmarshaller.java index a0a19ba9ef..4ce6f9337f 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendEventResultJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendEventResultJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendMessageRequestMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendMessageRequestMarshaller.java index d802ba7537..7422a080ab 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendMessageRequestMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendMessageRequestMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendMessageResultJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendMessageResultJsonUnmarshaller.java index 3c8f57c7ed..93d9872832 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendMessageResultJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/SendMessageResultJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ServiceQuotaExceededExceptionUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ServiceQuotaExceededExceptionUnmarshaller.java index 2c2501a7b9..6ee7f350d0 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ServiceQuotaExceededExceptionUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ServiceQuotaExceededExceptionUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartAttachmentUploadRequestMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartAttachmentUploadRequestMarshaller.java index 973d4b2342..0bcff4020c 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartAttachmentUploadRequestMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartAttachmentUploadRequestMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartAttachmentUploadResultJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartAttachmentUploadResultJsonUnmarshaller.java index fb1df224f8..3aea5f09ff 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartAttachmentUploadResultJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartAttachmentUploadResultJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartPositionJsonMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartPositionJsonMarshaller.java index 324bf1bd34..884c82e56a 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartPositionJsonMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartPositionJsonMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartPositionJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartPositionJsonUnmarshaller.java index c53c3e26c5..b0e8c2f4ad 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartPositionJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/StartPositionJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ThrottlingExceptionUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ThrottlingExceptionUnmarshaller.java index 6ccbd6c8e6..15db14f55f 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ThrottlingExceptionUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ThrottlingExceptionUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/UploadMetadataJsonMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/UploadMetadataJsonMarshaller.java index 617f7927f5..ac29f76aae 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/UploadMetadataJsonMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/UploadMetadataJsonMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/UploadMetadataJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/UploadMetadataJsonUnmarshaller.java index 17e970acd3..4599d319c7 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/UploadMetadataJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/UploadMetadataJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ValidationExceptionUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ValidationExceptionUnmarshaller.java index 8e2e1784bd..b9cf3356ac 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ValidationExceptionUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ValidationExceptionUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewContentJsonMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewContentJsonMarshaller.java index 73baf0a3dc..5ca4128672 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewContentJsonMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewContentJsonMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewContentJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewContentJsonUnmarshaller.java index 813024f5f6..52db1cd7a5 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewContentJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewContentJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewJsonMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewJsonMarshaller.java index 9671c7f9f8..d5a970911b 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewJsonMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewJsonMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewJsonUnmarshaller.java index 004575ad54..11c499de34 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/ViewJsonUnmarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/WebsocketJsonMarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/WebsocketJsonMarshaller.java index 84d4fc795a..4c79744f89 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/WebsocketJsonMarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/WebsocketJsonMarshaller.java @@ -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. diff --git a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/WebsocketJsonUnmarshaller.java b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/WebsocketJsonUnmarshaller.java index e588e82ded..a3fb8e8ce4 100644 --- a/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/WebsocketJsonUnmarshaller.java +++ b/aws-android-sdk-connectparticipant/src/main/java/com/amazonaws/services/connectparticipant/model/transform/WebsocketJsonUnmarshaller.java @@ -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.