@@ -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 e2c6ceff60e..6fc13fb9ce4 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 0d5c45c09ed..f8a3030cf94 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 694037f8cb2..653da437e2d 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 32b9b36621a..3311eacf9d1 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 4b550ca7b7e..d5c7e82def9 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 64e084fe975..dac1d389fd5 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 f09e45834e7..a0b6b05b9fd 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 08c71ec5312..61bfe169751 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 94907786f3c..5921c725667 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 a9127a2c9a1..f5a14ac419d 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 3272951ec52..dd2ce38d696 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 9cbf4751fa4..1610976c36b 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 702d0f9e58b..32a15a5e10b 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 dfa048c132b..73454c48340 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 23965e7ac44..f03e0484319 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 45013f110e7..2b81ed969d1 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 2e0156b1ad6..8dc09b62f03 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 bf1b665829d..a6267786dd0 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 8d9768facf7..d9964fcd56d 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 0f0673de430..68910ecef99 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 19b2082881a..528f74dbb0c 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 e7981faf4a5..6613d7bd50b 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 769e4f1992e..828d90907ea 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 f2fff71682c..e5004722ee8 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 c69e865212c..23d15a74eb4 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 4ebd0d35fea..815e4438f34 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 52c66c05e81..5fbbd3979fe 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 6489c5c6db2..6cf7b4b280b 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 e97e70de288..1398f476df8 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 dfc7d58166d..247a5ef1f72 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 db373c3b988..21421b9429d 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 20ce87507b6..8791d7330a4 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 3a7444087d9..b5cb9085fb6 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 364f0359717..5e87047a78a 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 7df68969e51..2ec4edbc9cb 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 dbf9c203da3..8fac1eb9044 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 fdb75484c82..18fc7ef3a08 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 6ec64d387f3..42424eb6886 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 15244b034c7..6c8c1ee7d8f 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 ee95167c10f..ab027c3c866 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 12a7e18f270..e120a138628 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 0d6e60f8650..41e5f4229b4 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 83bbe65a660..2351865a14b 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 13926b7dce6..dd477479164 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 83064c31c0f..626f5376fd3 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 ddee46ff11e..449958147d9 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 0602463c599..75133eb237f 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 6f81450879a..83d6bcd687a 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 5b6740559a0..a96e3dc6e0b 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 b04cdb97b24..dab5163dda7 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 fe5bf2d59fc..2ad32f43581 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 d43c4b155ce..a8613fc0b30 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 22e1a2407f6..4157cb14194 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 5a021dbf3a8..96cc9b7f3c9 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 c34ece73b08..8cfa55ffe7d 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 20a22fa619f..7f11e0f1128 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 aa303cae086..e2779c543bb 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 2179014ffd2..0dd018784f7 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 d92f93ac94f..8af00ecf455 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 71cfabbb1b8..1273b4fe8ac 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 c9a474f2ef5..0bbce19b386 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 30a5562ccf4..7b1298e0625 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 ded358270e2..3ec0bc7599d 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 659936cc58e..eb5f7115cb0 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 eddb3b38a28..b0287ed0876 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 9b3ff923ea8..50db5efb141 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 18b9fee9514..d3aed317cf2 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 313ed6cfcc7..e46dd3eeb92 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 b8501e00aef..e8e01fe3ee1 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 8b1775559ee..52109d8e88d 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 98c8296232a..d04c3130579 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 a0a19ba9efb..4ce6f9337f4 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 d802ba75372..7422a080ab2 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 3c8f57c7eda..93d9872832d 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 2c2501a7b92..6ee7f350d0a 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 973d4b2342e..0bcff4020c3 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 fb1df224f80..3aea5f09ff2 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 324bf1bd344..884c82e56a0 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 c53c3e26c56..b0e8c2f4ad5 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 6ccbd6c8e6c..15db14f55f0 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 617f7927f5d..ac29f76aae8 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 17e970acd3a..4599d319c79 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 8e2e1784bdf..b9cf3356ac8 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 73baf0a3dc0..5ca4128672b 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 813024f5f6e..52db1cd7a55 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 9671c7f9f8b..d5a970911bf 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 004575ad547..11c499de34e 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 84d4fc795a5..4c79744f892 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 e588e82ded5..a3fb8e8ce44 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.