diff --git a/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/FlowResponseStream.h b/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/FlowResponseStream.h
index 99e093e81ce..ce12e8e5380 100644
--- a/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/FlowResponseStream.h
+++ b/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/FlowResponseStream.h
@@ -48,11 +48,11 @@ namespace Model
*
The request is denied because of missing access permissions. Check your
* permissions and retry your request.
*/
- inline const AccessDeniedException& GetAccessDeniedException() const { return m_accessDeniedException; }
+ inline const BedrockAgentRuntimeError& GetAccessDeniedException() const { return m_accessDeniedException; }
inline bool AccessDeniedExceptionHasBeenSet() const { return m_accessDeniedExceptionHasBeenSet; }
- template
+ template
void SetAccessDeniedException(AccessDeniedExceptionT&& value) { m_accessDeniedExceptionHasBeenSet = true; m_accessDeniedException = std::forward(value); }
- template
+ template
FlowResponseStream& WithAccessDeniedException(AccessDeniedExceptionT&& value) { SetAccessDeniedException(std::forward(value)); return *this;}
///@}
@@ -74,11 +74,11 @@ namespace Model
* There was a conflict performing an operation. Resolve the conflict and retry
* your request.
*/
- inline const ConflictException& GetConflictException() const { return m_conflictException; }
+ inline const BedrockAgentRuntimeError& GetConflictException() const { return m_conflictException; }
inline bool ConflictExceptionHasBeenSet() const { return m_conflictExceptionHasBeenSet; }
- template
+ template
void SetConflictException(ConflictExceptionT&& value) { m_conflictExceptionHasBeenSet = true; m_conflictException = std::forward(value); }
- template
+ template
FlowResponseStream& WithConflictException(ConflictExceptionT&& value) { SetConflictException(std::forward(value)); return *this;}
///@}
@@ -162,11 +162,11 @@ namespace Model
* The specified resource Amazon Resource Name (ARN) was not found. Check the
* Amazon Resource Name (ARN) and try your request again.
*/
- inline const ResourceNotFoundException& GetResourceNotFoundException() const { return m_resourceNotFoundException; }
+ inline const BedrockAgentRuntimeError& GetResourceNotFoundException() const { return m_resourceNotFoundException; }
inline bool ResourceNotFoundExceptionHasBeenSet() const { return m_resourceNotFoundExceptionHasBeenSet; }
- template
+ template
void SetResourceNotFoundException(ResourceNotFoundExceptionT&& value) { m_resourceNotFoundExceptionHasBeenSet = true; m_resourceNotFoundException = std::forward(value); }
- template
+ template
FlowResponseStream& WithResourceNotFoundException(ResourceNotFoundExceptionT&& value) { SetResourceNotFoundException(std::forward(value)); return *this;}
///@}
@@ -175,11 +175,11 @@ namespace Model
* The number of requests exceeds the service quota. Resubmit your request
* later.
*/
- inline const ServiceQuotaExceededException& GetServiceQuotaExceededException() const { return m_serviceQuotaExceededException; }
+ inline const BedrockAgentRuntimeError& GetServiceQuotaExceededException() const { return m_serviceQuotaExceededException; }
inline bool ServiceQuotaExceededExceptionHasBeenSet() const { return m_serviceQuotaExceededExceptionHasBeenSet; }
- template
+ template
void SetServiceQuotaExceededException(ServiceQuotaExceededExceptionT&& value) { m_serviceQuotaExceededExceptionHasBeenSet = true; m_serviceQuotaExceededException = std::forward(value); }
- template
+ template
FlowResponseStream& WithServiceQuotaExceededException(ServiceQuotaExceededExceptionT&& value) { SetServiceQuotaExceededException(std::forward(value)); return *this;}
///@}
@@ -187,11 +187,11 @@ namespace Model
/**
* The number of requests exceeds the limit. Resubmit your request later.
*/
- inline const ThrottlingException& GetThrottlingException() const { return m_throttlingException; }
+ inline const BedrockAgentRuntimeError& GetThrottlingException() const { return m_throttlingException; }
inline bool ThrottlingExceptionHasBeenSet() const { return m_throttlingExceptionHasBeenSet; }
- template
+ template
void SetThrottlingException(ThrottlingExceptionT&& value) { m_throttlingExceptionHasBeenSet = true; m_throttlingException = std::forward(value); }
- template
+ template
FlowResponseStream& WithThrottlingException(ThrottlingExceptionT&& value) { SetThrottlingException(std::forward(value)); return *this;}
///@}
@@ -200,22 +200,22 @@ namespace Model
* Input validation failed. Check your request parameters and retry the
* request.
*/
- inline const ValidationException& GetValidationException() const { return m_validationException; }
+ inline const BedrockAgentRuntimeError& GetValidationException() const { return m_validationException; }
inline bool ValidationExceptionHasBeenSet() const { return m_validationExceptionHasBeenSet; }
- template
+ template
void SetValidationException(ValidationExceptionT&& value) { m_validationExceptionHasBeenSet = true; m_validationException = std::forward(value); }
- template
+ template
FlowResponseStream& WithValidationException(ValidationExceptionT&& value) { SetValidationException(std::forward(value)); return *this;}
///@}
private:
- AccessDeniedException m_accessDeniedException;
+ BedrockAgentRuntimeError m_accessDeniedException;
bool m_accessDeniedExceptionHasBeenSet = false;
BadGatewayException m_badGatewayException;
bool m_badGatewayExceptionHasBeenSet = false;
- ConflictException m_conflictException;
+ BedrockAgentRuntimeError m_conflictException;
bool m_conflictExceptionHasBeenSet = false;
DependencyFailedException m_dependencyFailedException;
@@ -236,16 +236,16 @@ namespace Model
InternalServerException m_internalServerException;
bool m_internalServerExceptionHasBeenSet = false;
- ResourceNotFoundException m_resourceNotFoundException;
+ BedrockAgentRuntimeError m_resourceNotFoundException;
bool m_resourceNotFoundExceptionHasBeenSet = false;
- ServiceQuotaExceededException m_serviceQuotaExceededException;
+ BedrockAgentRuntimeError m_serviceQuotaExceededException;
bool m_serviceQuotaExceededExceptionHasBeenSet = false;
- ThrottlingException m_throttlingException;
+ BedrockAgentRuntimeError m_throttlingException;
bool m_throttlingExceptionHasBeenSet = false;
- ValidationException m_validationException;
+ BedrockAgentRuntimeError m_validationException;
bool m_validationExceptionHasBeenSet = false;
};
diff --git a/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/InlineAgentResponseStream.h b/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/InlineAgentResponseStream.h
index 2582c6f705c..1f1ec5bcafa 100644
--- a/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/InlineAgentResponseStream.h
+++ b/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/InlineAgentResponseStream.h
@@ -49,11 +49,11 @@ namespace Model
* The request is denied because of missing access permissions. Check your
* permissions and retry your request.
*/
- inline const AccessDeniedException& GetAccessDeniedException() const { return m_accessDeniedException; }
+ inline const BedrockAgentRuntimeError& GetAccessDeniedException() const { return m_accessDeniedException; }
inline bool AccessDeniedExceptionHasBeenSet() const { return m_accessDeniedExceptionHasBeenSet; }
- template
+ template
void SetAccessDeniedException(AccessDeniedExceptionT&& value) { m_accessDeniedExceptionHasBeenSet = true; m_accessDeniedException = std::forward(value); }
- template
+ template
InlineAgentResponseStream& WithAccessDeniedException(AccessDeniedExceptionT&& value) { SetAccessDeniedException(std::forward(value)); return *this;}
///@}
@@ -87,11 +87,11 @@ namespace Model
* There was a conflict performing an operation. Resolve the conflict and retry
* your request.
*/
- inline const ConflictException& GetConflictException() const { return m_conflictException; }
+ inline const BedrockAgentRuntimeError& GetConflictException() const { return m_conflictException; }
inline bool ConflictExceptionHasBeenSet() const { return m_conflictExceptionHasBeenSet; }
- template
+ template
void SetConflictException(ConflictExceptionT&& value) { m_conflictExceptionHasBeenSet = true; m_conflictException = std::forward(value); }
- template
+ template
InlineAgentResponseStream& WithConflictException(ConflictExceptionT&& value) { SetConflictException(std::forward(value)); return *this;}
///@}
@@ -138,11 +138,11 @@ namespace Model
* The specified resource Amazon Resource Name (ARN) was not found. Check the
* Amazon Resource Name (ARN) and try your request again.
*/
- inline const ResourceNotFoundException& GetResourceNotFoundException() const { return m_resourceNotFoundException; }
+ inline const BedrockAgentRuntimeError& GetResourceNotFoundException() const { return m_resourceNotFoundException; }
inline bool ResourceNotFoundExceptionHasBeenSet() const { return m_resourceNotFoundExceptionHasBeenSet; }
- template
+ template
void SetResourceNotFoundException(ResourceNotFoundExceptionT&& value) { m_resourceNotFoundExceptionHasBeenSet = true; m_resourceNotFoundException = std::forward(value); }
- template
+ template
InlineAgentResponseStream& WithResourceNotFoundException(ResourceNotFoundExceptionT&& value) { SetResourceNotFoundException(std::forward(value)); return *this;}
///@}
@@ -165,11 +165,11 @@ namespace Model
* The number of requests exceeds the service quota. Resubmit your request
* later.
*/
- inline const ServiceQuotaExceededException& GetServiceQuotaExceededException() const { return m_serviceQuotaExceededException; }
+ inline const BedrockAgentRuntimeError& GetServiceQuotaExceededException() const { return m_serviceQuotaExceededException; }
inline bool ServiceQuotaExceededExceptionHasBeenSet() const { return m_serviceQuotaExceededExceptionHasBeenSet; }
- template
+ template
void SetServiceQuotaExceededException(ServiceQuotaExceededExceptionT&& value) { m_serviceQuotaExceededExceptionHasBeenSet = true; m_serviceQuotaExceededException = std::forward(value); }
- template
+ template
InlineAgentResponseStream& WithServiceQuotaExceededException(ServiceQuotaExceededExceptionT&& value) { SetServiceQuotaExceededException(std::forward(value)); return *this;}
///@}
@@ -177,11 +177,11 @@ namespace Model
/**
* The number of requests exceeds the limit. Resubmit your request later.
*/
- inline const ThrottlingException& GetThrottlingException() const { return m_throttlingException; }
+ inline const BedrockAgentRuntimeError& GetThrottlingException() const { return m_throttlingException; }
inline bool ThrottlingExceptionHasBeenSet() const { return m_throttlingExceptionHasBeenSet; }
- template
+ template
void SetThrottlingException(ThrottlingExceptionT&& value) { m_throttlingExceptionHasBeenSet = true; m_throttlingException = std::forward(value); }
- template
+ template
InlineAgentResponseStream& WithThrottlingException(ThrottlingExceptionT&& value) { SetThrottlingException(std::forward(value)); return *this;}
///@}
@@ -207,16 +207,16 @@ namespace Model
* Input validation failed. Check your request parameters and retry the
* request.
*/
- inline const ValidationException& GetValidationException() const { return m_validationException; }
+ inline const BedrockAgentRuntimeError& GetValidationException() const { return m_validationException; }
inline bool ValidationExceptionHasBeenSet() const { return m_validationExceptionHasBeenSet; }
- template
+ template
void SetValidationException(ValidationExceptionT&& value) { m_validationExceptionHasBeenSet = true; m_validationException = std::forward(value); }
- template
+ template
InlineAgentResponseStream& WithValidationException(ValidationExceptionT&& value) { SetValidationException(std::forward(value)); return *this;}
///@}
private:
- AccessDeniedException m_accessDeniedException;
+ BedrockAgentRuntimeError m_accessDeniedException;
bool m_accessDeniedExceptionHasBeenSet = false;
BadGatewayException m_badGatewayException;
@@ -225,7 +225,7 @@ namespace Model
InlineAgentPayloadPart m_chunk;
bool m_chunkHasBeenSet = false;
- ConflictException m_conflictException;
+ BedrockAgentRuntimeError m_conflictException;
bool m_conflictExceptionHasBeenSet = false;
DependencyFailedException m_dependencyFailedException;
@@ -237,22 +237,22 @@ namespace Model
InternalServerException m_internalServerException;
bool m_internalServerExceptionHasBeenSet = false;
- ResourceNotFoundException m_resourceNotFoundException;
+ BedrockAgentRuntimeError m_resourceNotFoundException;
bool m_resourceNotFoundExceptionHasBeenSet = false;
InlineAgentReturnControlPayload m_returnControl;
bool m_returnControlHasBeenSet = false;
- ServiceQuotaExceededException m_serviceQuotaExceededException;
+ BedrockAgentRuntimeError m_serviceQuotaExceededException;
bool m_serviceQuotaExceededExceptionHasBeenSet = false;
- ThrottlingException m_throttlingException;
+ BedrockAgentRuntimeError m_throttlingException;
bool m_throttlingExceptionHasBeenSet = false;
InlineAgentTracePart m_trace;
bool m_traceHasBeenSet = false;
- ValidationException m_validationException;
+ BedrockAgentRuntimeError m_validationException;
bool m_validationExceptionHasBeenSet = false;
};
diff --git a/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/OptimizedPromptStream.h b/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/OptimizedPromptStream.h
index 8db919118cb..922fd12d326 100644
--- a/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/OptimizedPromptStream.h
+++ b/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/OptimizedPromptStream.h
@@ -47,11 +47,11 @@ namespace Model
* The request is denied because of missing access permissions. Check your
* permissions and retry your request.
*/
- inline const AccessDeniedException& GetAccessDeniedException() const { return m_accessDeniedException; }
+ inline const BedrockAgentRuntimeError& GetAccessDeniedException() const { return m_accessDeniedException; }
inline bool AccessDeniedExceptionHasBeenSet() const { return m_accessDeniedExceptionHasBeenSet; }
- template
+ template
void SetAccessDeniedException(AccessDeniedExceptionT&& value) { m_accessDeniedExceptionHasBeenSet = true; m_accessDeniedException = std::forward(value); }
- template
+ template
OptimizedPromptStream& WithAccessDeniedException(AccessDeniedExceptionT&& value) { SetAccessDeniedException(std::forward(value)); return *this;}
///@}
@@ -125,11 +125,11 @@ namespace Model
* href="https://docs.aws.amazon.com/bedrock/latest/userguide/prov-throughput.html">Provisioned
* Throughput to increase the rate or number of tokens you can process.
*/
- inline const ThrottlingException& GetThrottlingException() const { return m_throttlingException; }
+ inline const BedrockAgentRuntimeError& GetThrottlingException() const { return m_throttlingException; }
inline bool ThrottlingExceptionHasBeenSet() const { return m_throttlingExceptionHasBeenSet; }
- template
+ template
void SetThrottlingException(ThrottlingExceptionT&& value) { m_throttlingExceptionHasBeenSet = true; m_throttlingException = std::forward(value); }
- template
+ template
OptimizedPromptStream& WithThrottlingException(ThrottlingExceptionT&& value) { SetThrottlingException(std::forward(value)); return *this;}
///@}
@@ -138,16 +138,16 @@ namespace Model
* Input validation failed. Check your request parameters and retry the
* request.
*/
- inline const ValidationException& GetValidationException() const { return m_validationException; }
+ inline const BedrockAgentRuntimeError& GetValidationException() const { return m_validationException; }
inline bool ValidationExceptionHasBeenSet() const { return m_validationExceptionHasBeenSet; }
- template
+ template
void SetValidationException(ValidationExceptionT&& value) { m_validationExceptionHasBeenSet = true; m_validationException = std::forward(value); }
- template
+ template
OptimizedPromptStream& WithValidationException(ValidationExceptionT&& value) { SetValidationException(std::forward(value)); return *this;}
///@}
private:
- AccessDeniedException m_accessDeniedException;
+ BedrockAgentRuntimeError m_accessDeniedException;
bool m_accessDeniedExceptionHasBeenSet = false;
AnalyzePromptEvent m_analyzePromptEvent;
@@ -165,10 +165,10 @@ namespace Model
OptimizedPromptEvent m_optimizedPromptEvent;
bool m_optimizedPromptEventHasBeenSet = false;
- ThrottlingException m_throttlingException;
+ BedrockAgentRuntimeError m_throttlingException;
bool m_throttlingExceptionHasBeenSet = false;
- ValidationException m_validationException;
+ BedrockAgentRuntimeError m_validationException;
bool m_validationExceptionHasBeenSet = false;
};
diff --git a/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/ResponseStream.h b/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/ResponseStream.h
index c4a8d785e34..097d2c5067d 100644
--- a/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/ResponseStream.h
+++ b/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/ResponseStream.h
@@ -49,11 +49,11 @@ namespace Model
* The request is denied because of missing access permissions. Check your
* permissions and retry your request.
*/
- inline const AccessDeniedException& GetAccessDeniedException() const { return m_accessDeniedException; }
+ inline const BedrockAgentRuntimeError& GetAccessDeniedException() const { return m_accessDeniedException; }
inline bool AccessDeniedExceptionHasBeenSet() const { return m_accessDeniedExceptionHasBeenSet; }
- template
+ template
void SetAccessDeniedException(AccessDeniedExceptionT&& value) { m_accessDeniedExceptionHasBeenSet = true; m_accessDeniedException = std::forward(value); }
- template
+ template
ResponseStream& WithAccessDeniedException(AccessDeniedExceptionT&& value) { SetAccessDeniedException(std::forward(value)); return *this;}
///@}
@@ -87,11 +87,11 @@ namespace Model
* There was a conflict performing an operation. Resolve the conflict and retry
* your request.
*/
- inline const ConflictException& GetConflictException() const { return m_conflictException; }
+ inline const BedrockAgentRuntimeError& GetConflictException() const { return m_conflictException; }
inline bool ConflictExceptionHasBeenSet() const { return m_conflictExceptionHasBeenSet; }
- template
+ template
void SetConflictException(ConflictExceptionT&& value) { m_conflictExceptionHasBeenSet = true; m_conflictException = std::forward(value); }
- template
+ template
ResponseStream& WithConflictException(ConflictExceptionT&& value) { SetConflictException(std::forward(value)); return *this;}
///@}
@@ -141,11 +141,11 @@ namespace Model
* href="https://docs.aws.amazon.com/sdkref/latest/guide/feature-retry-behavior.html">Retry
* behavior in the AWS SDKs and Tools reference guide.
*/
- inline const ModelNotReadyException& GetModelNotReadyException() const { return m_modelNotReadyException; }
+ inline const BedrockAgentRuntimeError& GetModelNotReadyException() const { return m_modelNotReadyException; }
inline bool ModelNotReadyExceptionHasBeenSet() const { return m_modelNotReadyExceptionHasBeenSet; }
- template
+ template
void SetModelNotReadyException(ModelNotReadyExceptionT&& value) { m_modelNotReadyExceptionHasBeenSet = true; m_modelNotReadyException = std::forward(value); }
- template
+ template
ResponseStream& WithModelNotReadyException(ModelNotReadyExceptionT&& value) { SetModelNotReadyException(std::forward(value)); return *this;}
///@}
@@ -154,11 +154,11 @@ namespace Model
* The specified resource Amazon Resource Name (ARN) was not found. Check the
* Amazon Resource Name (ARN) and try your request again.
*/
- inline const ResourceNotFoundException& GetResourceNotFoundException() const { return m_resourceNotFoundException; }
+ inline const BedrockAgentRuntimeError& GetResourceNotFoundException() const { return m_resourceNotFoundException; }
inline bool ResourceNotFoundExceptionHasBeenSet() const { return m_resourceNotFoundExceptionHasBeenSet; }
- template
+ template
void SetResourceNotFoundException(ResourceNotFoundExceptionT&& value) { m_resourceNotFoundExceptionHasBeenSet = true; m_resourceNotFoundException = std::forward(value); }
- template
+ template
ResponseStream& WithResourceNotFoundException(ResourceNotFoundExceptionT&& value) { SetResourceNotFoundException(std::forward(value)); return *this;}
///@}
@@ -181,11 +181,11 @@ namespace Model
* The number of requests exceeds the service quota. Resubmit your request
* later.
*/
- inline const ServiceQuotaExceededException& GetServiceQuotaExceededException() const { return m_serviceQuotaExceededException; }
+ inline const BedrockAgentRuntimeError& GetServiceQuotaExceededException() const { return m_serviceQuotaExceededException; }
inline bool ServiceQuotaExceededExceptionHasBeenSet() const { return m_serviceQuotaExceededExceptionHasBeenSet; }
- template
+ template
void SetServiceQuotaExceededException(ServiceQuotaExceededExceptionT&& value) { m_serviceQuotaExceededExceptionHasBeenSet = true; m_serviceQuotaExceededException = std::forward(value); }
- template
+ template
ResponseStream& WithServiceQuotaExceededException(ServiceQuotaExceededExceptionT&& value) { SetServiceQuotaExceededException(std::forward(value)); return *this;}
///@}
@@ -193,11 +193,11 @@ namespace Model
/**
* The number of requests exceeds the limit. Resubmit your request later.
*/
- inline const ThrottlingException& GetThrottlingException() const { return m_throttlingException; }
+ inline const BedrockAgentRuntimeError& GetThrottlingException() const { return m_throttlingException; }
inline bool ThrottlingExceptionHasBeenSet() const { return m_throttlingExceptionHasBeenSet; }
- template
+ template
void SetThrottlingException(ThrottlingExceptionT&& value) { m_throttlingExceptionHasBeenSet = true; m_throttlingException = std::forward(value); }
- template
+ template
ResponseStream& WithThrottlingException(ThrottlingExceptionT&& value) { SetThrottlingException(std::forward(value)); return *this;}
///@}
@@ -223,16 +223,16 @@ namespace Model
* Input validation failed. Check your request parameters and retry the
* request.
*/
- inline const ValidationException& GetValidationException() const { return m_validationException; }
+ inline const BedrockAgentRuntimeError& GetValidationException() const { return m_validationException; }
inline bool ValidationExceptionHasBeenSet() const { return m_validationExceptionHasBeenSet; }
- template
+ template
void SetValidationException(ValidationExceptionT&& value) { m_validationExceptionHasBeenSet = true; m_validationException = std::forward(value); }
- template
+ template
ResponseStream& WithValidationException(ValidationExceptionT&& value) { SetValidationException(std::forward(value)); return *this;}
///@}
private:
- AccessDeniedException m_accessDeniedException;
+ BedrockAgentRuntimeError m_accessDeniedException;
bool m_accessDeniedExceptionHasBeenSet = false;
BadGatewayException m_badGatewayException;
@@ -241,7 +241,7 @@ namespace Model
PayloadPart m_chunk;
bool m_chunkHasBeenSet = false;
- ConflictException m_conflictException;
+ BedrockAgentRuntimeError m_conflictException;
bool m_conflictExceptionHasBeenSet = false;
DependencyFailedException m_dependencyFailedException;
@@ -253,25 +253,25 @@ namespace Model
InternalServerException m_internalServerException;
bool m_internalServerExceptionHasBeenSet = false;
- ModelNotReadyException m_modelNotReadyException;
+ BedrockAgentRuntimeError m_modelNotReadyException;
bool m_modelNotReadyExceptionHasBeenSet = false;
- ResourceNotFoundException m_resourceNotFoundException;
+ BedrockAgentRuntimeError m_resourceNotFoundException;
bool m_resourceNotFoundExceptionHasBeenSet = false;
ReturnControlPayload m_returnControl;
bool m_returnControlHasBeenSet = false;
- ServiceQuotaExceededException m_serviceQuotaExceededException;
+ BedrockAgentRuntimeError m_serviceQuotaExceededException;
bool m_serviceQuotaExceededExceptionHasBeenSet = false;
- ThrottlingException m_throttlingException;
+ BedrockAgentRuntimeError m_throttlingException;
bool m_throttlingExceptionHasBeenSet = false;
TracePart m_trace;
bool m_traceHasBeenSet = false;
- ValidationException m_validationException;
+ BedrockAgentRuntimeError m_validationException;
bool m_validationExceptionHasBeenSet = false;
};
diff --git a/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/RetrieveAndGenerateStreamResponseOutput.h b/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/RetrieveAndGenerateStreamResponseOutput.h
index cc97e697003..f9b359bcc68 100644
--- a/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/RetrieveAndGenerateStreamResponseOutput.h
+++ b/generated/src/aws-cpp-sdk-bedrock-agent-runtime/include/aws/bedrock-agent-runtime/model/RetrieveAndGenerateStreamResponseOutput.h
@@ -49,11 +49,11 @@ namespace Model
* href="https://docs.aws.amazon.com/bedrock/latest/userguide/troubleshooting-api-error-codes.html#ts-access-denied">AccessDeniedException
* in the Amazon Bedrock User Guide.
*/
- inline const AccessDeniedException& GetAccessDeniedException() const { return m_accessDeniedException; }
+ inline const BedrockAgentRuntimeError& GetAccessDeniedException() const { return m_accessDeniedException; }
inline bool AccessDeniedExceptionHasBeenSet() const { return m_accessDeniedExceptionHasBeenSet; }
- template
+ template
void SetAccessDeniedException(AccessDeniedExceptionT&& value) { m_accessDeniedExceptionHasBeenSet = true; m_accessDeniedException = std::forward(value); }
- template
+ template
RetrieveAndGenerateStreamResponseOutput& WithAccessDeniedException(AccessDeniedExceptionT&& value) { SetAccessDeniedException(std::forward(value)); return *this;}
///@}
@@ -85,11 +85,11 @@ namespace Model
/**
* Error occurred because of a conflict while performing an operation.
*/
- inline const ConflictException& GetConflictException() const { return m_conflictException; }
+ inline const BedrockAgentRuntimeError& GetConflictException() const { return m_conflictException; }
inline bool ConflictExceptionHasBeenSet() const { return m_conflictExceptionHasBeenSet; }
- template
+ template
void SetConflictException(ConflictExceptionT&& value) { m_conflictExceptionHasBeenSet = true; m_conflictException = std::forward(value); }
- template
+ template
RetrieveAndGenerateStreamResponseOutput& WithConflictException(ConflictExceptionT&& value) { SetConflictException(std::forward(value)); return *this;}
///@}
@@ -148,11 +148,11 @@ namespace Model
* href="https://docs.aws.amazon.com/bedrock/latest/userguide/troubleshooting-api-error-codes.html#ts-resource-not-found">ResourceNotFound
* in the Amazon Bedrock User Guide.
*/
- inline const ResourceNotFoundException& GetResourceNotFoundException() const { return m_resourceNotFoundException; }
+ inline const BedrockAgentRuntimeError& GetResourceNotFoundException() const { return m_resourceNotFoundException; }
inline bool ResourceNotFoundExceptionHasBeenSet() const { return m_resourceNotFoundExceptionHasBeenSet; }
- template
+ template
void SetResourceNotFoundException(ResourceNotFoundExceptionT&& value) { m_resourceNotFoundExceptionHasBeenSet = true; m_resourceNotFoundException = std::forward(value); }
- template
+ template
RetrieveAndGenerateStreamResponseOutput& WithResourceNotFoundException(ResourceNotFoundExceptionT&& value) { SetResourceNotFoundException(std::forward(value)); return *this;}
///@}
@@ -163,11 +163,11 @@ namespace Model
* href="https://docs.aws.amazon.com/servicequotas/latest/userguide/gs-request-quota.html">Viewing
* service quotas. You can resubmit your request later.
*/
- inline const ServiceQuotaExceededException& GetServiceQuotaExceededException() const { return m_serviceQuotaExceededException; }
+ inline const BedrockAgentRuntimeError& GetServiceQuotaExceededException() const { return m_serviceQuotaExceededException; }
inline bool ServiceQuotaExceededExceptionHasBeenSet() const { return m_serviceQuotaExceededExceptionHasBeenSet; }
- template
+ template
void SetServiceQuotaExceededException(ServiceQuotaExceededExceptionT&& value) { m_serviceQuotaExceededExceptionHasBeenSet = true; m_serviceQuotaExceededException = std::forward(value); }
- template
+ template
RetrieveAndGenerateStreamResponseOutput& WithServiceQuotaExceededException(ServiceQuotaExceededExceptionT&& value) { SetServiceQuotaExceededException(std::forward(value)); return *this;}
///@}
@@ -178,11 +178,11 @@ namespace Model
* href="https://docs.aws.amazon.com/bedrock/latest/userguide/troubleshooting-api-error-codes.html#ts-throttling-exception">ThrottlingException
* in the Amazon Bedrock User Guide.
*/
- inline const ThrottlingException& GetThrottlingException() const { return m_throttlingException; }
+ inline const BedrockAgentRuntimeError& GetThrottlingException() const { return m_throttlingException; }
inline bool ThrottlingExceptionHasBeenSet() const { return m_throttlingExceptionHasBeenSet; }
- template
+ template
void SetThrottlingException(ThrottlingExceptionT&& value) { m_throttlingExceptionHasBeenSet = true; m_throttlingException = std::forward(value); }
- template
+ template
RetrieveAndGenerateStreamResponseOutput& WithThrottlingException(ThrottlingExceptionT&& value) { SetThrottlingException(std::forward(value)); return *this;}
///@}
@@ -193,16 +193,16 @@ namespace Model
* href="https://docs.aws.amazon.com/bedrock/latest/userguide/troubleshooting-api-error-codes.html#ts-validation-error">ValidationError
* in the Amazon Bedrock User Guide.
*/
- inline const ValidationException& GetValidationException() const { return m_validationException; }
+ inline const BedrockAgentRuntimeError& GetValidationException() const { return m_validationException; }
inline bool ValidationExceptionHasBeenSet() const { return m_validationExceptionHasBeenSet; }
- template
+ template
void SetValidationException(ValidationExceptionT&& value) { m_validationExceptionHasBeenSet = true; m_validationException = std::forward(value); }
- template
+ template
RetrieveAndGenerateStreamResponseOutput& WithValidationException(ValidationExceptionT&& value) { SetValidationException(std::forward(value)); return *this;}
///@}
private:
- AccessDeniedException m_accessDeniedException;
+ BedrockAgentRuntimeError m_accessDeniedException;
bool m_accessDeniedExceptionHasBeenSet = false;
BadGatewayException m_badGatewayException;
@@ -211,7 +211,7 @@ namespace Model
CitationEvent m_citation;
bool m_citationHasBeenSet = false;
- ConflictException m_conflictException;
+ BedrockAgentRuntimeError m_conflictException;
bool m_conflictExceptionHasBeenSet = false;
DependencyFailedException m_dependencyFailedException;
@@ -226,16 +226,16 @@ namespace Model
RetrieveAndGenerateOutputEvent m_output;
bool m_outputHasBeenSet = false;
- ResourceNotFoundException m_resourceNotFoundException;
+ BedrockAgentRuntimeError m_resourceNotFoundException;
bool m_resourceNotFoundExceptionHasBeenSet = false;
- ServiceQuotaExceededException m_serviceQuotaExceededException;
+ BedrockAgentRuntimeError m_serviceQuotaExceededException;
bool m_serviceQuotaExceededExceptionHasBeenSet = false;
- ThrottlingException m_throttlingException;
+ BedrockAgentRuntimeError m_throttlingException;
bool m_throttlingExceptionHasBeenSet = false;
- ValidationException m_validationException;
+ BedrockAgentRuntimeError m_validationException;
bool m_validationExceptionHasBeenSet = false;
};
diff --git a/generated/src/aws-cpp-sdk-bedrock-runtime/include/aws/bedrock-runtime/model/ConverseStreamOutput.h b/generated/src/aws-cpp-sdk-bedrock-runtime/include/aws/bedrock-runtime/model/ConverseStreamOutput.h
index bd716bb2e84..76832b16eab 100644
--- a/generated/src/aws-cpp-sdk-bedrock-runtime/include/aws/bedrock-runtime/model/ConverseStreamOutput.h
+++ b/generated/src/aws-cpp-sdk-bedrock-runtime/include/aws/bedrock-runtime/model/ConverseStreamOutput.h
@@ -119,11 +119,11 @@ namespace Model
/**
* An internal server error occurred. Retry your request.
*/
- inline const InternalServerException& GetInternalServerException() const { return m_internalServerException; }
+ inline const BedrockRuntimeError& GetInternalServerException() const { return m_internalServerException; }
inline bool InternalServerExceptionHasBeenSet() const { return m_internalServerExceptionHasBeenSet; }
- template
+ template
void SetInternalServerException(InternalServerExceptionT&& value) { m_internalServerExceptionHasBeenSet = true; m_internalServerException = std::forward(value); }
- template
+ template
ConverseStreamOutput& WithInternalServerException(InternalServerExceptionT&& value) { SetInternalServerException(std::forward(value)); return *this;}
///@}
@@ -146,11 +146,11 @@ namespace Model
* href="https://docs.aws.amazon.com/bedrock/latest/userguide/troubleshooting-api-error-codes.html#ts-validation-error">ValidationError
* in the Amazon Bedrock User Guide
*/
- inline const ValidationException& GetValidationException() const { return m_validationException; }
+ inline const BedrockRuntimeError& GetValidationException() const { return m_validationException; }
inline bool ValidationExceptionHasBeenSet() const { return m_validationExceptionHasBeenSet; }
- template
+ template
void SetValidationException(ValidationExceptionT&& value) { m_validationExceptionHasBeenSet = true; m_validationException = std::forward(value); }
- template
+ template
ConverseStreamOutput& WithValidationException(ValidationExceptionT&& value) { SetValidationException(std::forward(value)); return *this;}
///@}
@@ -161,11 +161,11 @@ namespace Model
* href="https://docs.aws.amazon.com/bedrock/latest/userguide/troubleshooting-api-error-codes.html#ts-throttling-exception">ThrottlingException
* in the Amazon Bedrock User Guide
*/
- inline const ThrottlingException& GetThrottlingException() const { return m_throttlingException; }
+ inline const BedrockRuntimeError& GetThrottlingException() const { return m_throttlingException; }
inline bool ThrottlingExceptionHasBeenSet() const { return m_throttlingExceptionHasBeenSet; }
- template
+ template
void SetThrottlingException(ThrottlingExceptionT&& value) { m_throttlingExceptionHasBeenSet = true; m_throttlingException = std::forward(value); }
- template
+ template
ConverseStreamOutput& WithThrottlingException(ThrottlingExceptionT&& value) { SetThrottlingException(std::forward(value)); return *this;}
///@}
@@ -175,11 +175,11 @@ namespace Model
* href="https://docs.aws.amazon.com/bedrock/latest/userguide/troubleshooting-api-error-codes.html#ts-service-unavailable">ServiceUnavailable
* in the Amazon Bedrock User Guide
*/
- inline const ServiceUnavailableException& GetServiceUnavailableException() const { return m_serviceUnavailableException; }
+ inline const BedrockRuntimeError& GetServiceUnavailableException() const { return m_serviceUnavailableException; }
inline bool ServiceUnavailableExceptionHasBeenSet() const { return m_serviceUnavailableExceptionHasBeenSet; }
- template
+ template
void SetServiceUnavailableException(ServiceUnavailableExceptionT&& value) { m_serviceUnavailableExceptionHasBeenSet = true; m_serviceUnavailableException = std::forward(value); }
- template
+ template
ConverseStreamOutput& WithServiceUnavailableException(ServiceUnavailableExceptionT&& value) { SetServiceUnavailableException(std::forward(value)); return *this;}
///@}
private:
@@ -202,19 +202,19 @@ namespace Model
ConverseStreamMetadataEvent m_metadata;
bool m_metadataHasBeenSet = false;
- InternalServerException m_internalServerException;
+ BedrockRuntimeError m_internalServerException;
bool m_internalServerExceptionHasBeenSet = false;
ModelStreamErrorException m_modelStreamErrorException;
bool m_modelStreamErrorExceptionHasBeenSet = false;
- ValidationException m_validationException;
+ BedrockRuntimeError m_validationException;
bool m_validationExceptionHasBeenSet = false;
- ThrottlingException m_throttlingException;
+ BedrockRuntimeError m_throttlingException;
bool m_throttlingExceptionHasBeenSet = false;
- ServiceUnavailableException m_serviceUnavailableException;
+ BedrockRuntimeError m_serviceUnavailableException;
bool m_serviceUnavailableExceptionHasBeenSet = false;
};
diff --git a/generated/src/aws-cpp-sdk-bedrock-runtime/include/aws/bedrock-runtime/model/InvokeModelWithBidirectionalStreamOutput.h b/generated/src/aws-cpp-sdk-bedrock-runtime/include/aws/bedrock-runtime/model/InvokeModelWithBidirectionalStreamOutput.h
index de80b37d4c1..5b1a266e89f 100644
--- a/generated/src/aws-cpp-sdk-bedrock-runtime/include/aws/bedrock-runtime/model/InvokeModelWithBidirectionalStreamOutput.h
+++ b/generated/src/aws-cpp-sdk-bedrock-runtime/include/aws/bedrock-runtime/model/InvokeModelWithBidirectionalStreamOutput.h
@@ -55,11 +55,11 @@ namespace Model
/**
* The request encountered an unknown internal error.
*/
- inline const InternalServerException& GetInternalServerException() const { return m_internalServerException; }
+ inline const BedrockRuntimeError& GetInternalServerException() const { return m_internalServerException; }
inline bool InternalServerExceptionHasBeenSet() const { return m_internalServerExceptionHasBeenSet; }
- template
+ template
void SetInternalServerException(InternalServerExceptionT&& value) { m_internalServerExceptionHasBeenSet = true; m_internalServerException = std::forward(value); }
- template
+ template
InvokeModelWithBidirectionalStreamOutput& WithInternalServerException(InternalServerExceptionT&& value) { SetInternalServerException(std::forward(value)); return *this;}
///@}
@@ -80,11 +80,11 @@ namespace Model
* The input fails to satisfy the constraints specified by an Amazon Web
* Services service.
*/
- inline const ValidationException& GetValidationException() const { return m_validationException; }
+ inline const BedrockRuntimeError& GetValidationException() const { return m_validationException; }
inline bool ValidationExceptionHasBeenSet() const { return m_validationExceptionHasBeenSet; }
- template
+ template
void SetValidationException(ValidationExceptionT&& value) { m_validationExceptionHasBeenSet = true; m_validationException = std::forward(value); }
- template
+ template
InvokeModelWithBidirectionalStreamOutput& WithValidationException(ValidationExceptionT&& value) { SetValidationException(std::forward(value)); return *this;}
///@}
@@ -92,11 +92,11 @@ namespace Model
/**
* The request was denied due to request throttling.
*/
- inline const ThrottlingException& GetThrottlingException() const { return m_throttlingException; }
+ inline const BedrockRuntimeError& GetThrottlingException() const { return m_throttlingException; }
inline bool ThrottlingExceptionHasBeenSet() const { return m_throttlingExceptionHasBeenSet; }
- template
+ template
void SetThrottlingException(ThrottlingExceptionT&& value) { m_throttlingExceptionHasBeenSet = true; m_throttlingException = std::forward(value); }
- template
+ template
InvokeModelWithBidirectionalStreamOutput& WithThrottlingException(ThrottlingExceptionT&& value) { SetThrottlingException(std::forward(value)); return *this;}
///@}
@@ -105,11 +105,11 @@ namespace Model
* The connection was closed because a request was not received within the
* timeout period.
*/
- inline const ModelTimeoutException& GetModelTimeoutException() const { return m_modelTimeoutException; }
+ inline const BedrockRuntimeError& GetModelTimeoutException() const { return m_modelTimeoutException; }
inline bool ModelTimeoutExceptionHasBeenSet() const { return m_modelTimeoutExceptionHasBeenSet; }
- template
+ template
void SetModelTimeoutException(ModelTimeoutExceptionT&& value) { m_modelTimeoutExceptionHasBeenSet = true; m_modelTimeoutException = std::forward(value); }
- template
+ template
InvokeModelWithBidirectionalStreamOutput& WithModelTimeoutException(ModelTimeoutExceptionT&& value) { SetModelTimeoutException(std::forward(value)); return *this;}
///@}
@@ -117,11 +117,11 @@ namespace Model
/**
* The request has failed due to a temporary failure of the server.
*/
- inline const ServiceUnavailableException& GetServiceUnavailableException() const { return m_serviceUnavailableException; }
+ inline const BedrockRuntimeError& GetServiceUnavailableException() const { return m_serviceUnavailableException; }
inline bool ServiceUnavailableExceptionHasBeenSet() const { return m_serviceUnavailableExceptionHasBeenSet; }
- template
+ template
void SetServiceUnavailableException(ServiceUnavailableExceptionT&& value) { m_serviceUnavailableExceptionHasBeenSet = true; m_serviceUnavailableException = std::forward(value); }
- template
+ template
InvokeModelWithBidirectionalStreamOutput& WithServiceUnavailableException(ServiceUnavailableExceptionT&& value) { SetServiceUnavailableException(std::forward(value)); return *this;}
///@}
private:
@@ -129,22 +129,22 @@ namespace Model
BidirectionalOutputPayloadPart m_chunk;
bool m_chunkHasBeenSet = false;
- InternalServerException m_internalServerException;
+ BedrockRuntimeError m_internalServerException;
bool m_internalServerExceptionHasBeenSet = false;
ModelStreamErrorException m_modelStreamErrorException;
bool m_modelStreamErrorExceptionHasBeenSet = false;
- ValidationException m_validationException;
+ BedrockRuntimeError m_validationException;
bool m_validationExceptionHasBeenSet = false;
- ThrottlingException m_throttlingException;
+ BedrockRuntimeError m_throttlingException;
bool m_throttlingExceptionHasBeenSet = false;
- ModelTimeoutException m_modelTimeoutException;
+ BedrockRuntimeError m_modelTimeoutException;
bool m_modelTimeoutExceptionHasBeenSet = false;
- ServiceUnavailableException m_serviceUnavailableException;
+ BedrockRuntimeError m_serviceUnavailableException;
bool m_serviceUnavailableExceptionHasBeenSet = false;
};
diff --git a/generated/src/aws-cpp-sdk-bedrock-runtime/include/aws/bedrock-runtime/model/ResponseStream.h b/generated/src/aws-cpp-sdk-bedrock-runtime/include/aws/bedrock-runtime/model/ResponseStream.h
index 2f047537a2d..8da2f2d0456 100644
--- a/generated/src/aws-cpp-sdk-bedrock-runtime/include/aws/bedrock-runtime/model/ResponseStream.h
+++ b/generated/src/aws-cpp-sdk-bedrock-runtime/include/aws/bedrock-runtime/model/ResponseStream.h
@@ -54,11 +54,11 @@ namespace Model
/**
* An internal server error occurred. Retry your request.
*/
- inline const InternalServerException& GetInternalServerException() const { return m_internalServerException; }
+ inline const BedrockRuntimeError& GetInternalServerException() const { return m_internalServerException; }
inline bool InternalServerExceptionHasBeenSet() const { return m_internalServerExceptionHasBeenSet; }
- template
+ template
void SetInternalServerException(InternalServerExceptionT&& value) { m_internalServerExceptionHasBeenSet = true; m_internalServerException = std::forward(value); }
- template
+ template
ResponseStream& WithInternalServerException(InternalServerExceptionT&& value) { SetInternalServerException(std::forward(value)); return *this;}
///@}
@@ -79,11 +79,11 @@ namespace Model
* Input validation failed. Check your request parameters and retry the
* request.
*/
- inline const ValidationException& GetValidationException() const { return m_validationException; }
+ inline const BedrockRuntimeError& GetValidationException() const { return m_validationException; }
inline bool ValidationExceptionHasBeenSet() const { return m_validationExceptionHasBeenSet; }
- template
+ template
void SetValidationException(ValidationExceptionT&& value) { m_validationExceptionHasBeenSet = true; m_validationException = std::forward(value); }
- template
+ template
ResponseStream& WithValidationException(ValidationExceptionT&& value) { SetValidationException(std::forward(value)); return *this;}
///@}
@@ -94,11 +94,11 @@ namespace Model
* href="https://docs.aws.amazon.com/bedrock/latest/userguide/prov-throughput.html">Provisioned
* Throughput to increase the rate or number of tokens you can process.
*/
- inline const ThrottlingException& GetThrottlingException() const { return m_throttlingException; }
+ inline const BedrockRuntimeError& GetThrottlingException() const { return m_throttlingException; }
inline bool ThrottlingExceptionHasBeenSet() const { return m_throttlingExceptionHasBeenSet; }
- template
+ template
void SetThrottlingException(ThrottlingExceptionT&& value) { m_throttlingExceptionHasBeenSet = true; m_throttlingException = std::forward(value); }
- template
+ template
ResponseStream& WithThrottlingException(ThrottlingExceptionT&& value) { SetThrottlingException(std::forward(value)); return *this;}
///@}
@@ -107,11 +107,11 @@ namespace Model
* The request took too long to process. Processing time exceeded the model
* timeout length.
*/
- inline const ModelTimeoutException& GetModelTimeoutException() const { return m_modelTimeoutException; }
+ inline const BedrockRuntimeError& GetModelTimeoutException() const { return m_modelTimeoutException; }
inline bool ModelTimeoutExceptionHasBeenSet() const { return m_modelTimeoutExceptionHasBeenSet; }
- template
+ template
void SetModelTimeoutException(ModelTimeoutExceptionT&& value) { m_modelTimeoutExceptionHasBeenSet = true; m_modelTimeoutException = std::forward(value); }
- template
+ template
ResponseStream& WithModelTimeoutException(ModelTimeoutExceptionT&& value) { SetModelTimeoutException(std::forward(value)); return *this;}
///@}
@@ -119,11 +119,11 @@ namespace Model
/**
* The service isn't available. Try again later.
*/
- inline const ServiceUnavailableException& GetServiceUnavailableException() const { return m_serviceUnavailableException; }
+ inline const BedrockRuntimeError& GetServiceUnavailableException() const { return m_serviceUnavailableException; }
inline bool ServiceUnavailableExceptionHasBeenSet() const { return m_serviceUnavailableExceptionHasBeenSet; }
- template
+ template
void SetServiceUnavailableException(ServiceUnavailableExceptionT&& value) { m_serviceUnavailableExceptionHasBeenSet = true; m_serviceUnavailableException = std::forward(value); }
- template
+ template
ResponseStream& WithServiceUnavailableException(ServiceUnavailableExceptionT&& value) { SetServiceUnavailableException(std::forward(value)); return *this;}
///@}
private:
@@ -131,22 +131,22 @@ namespace Model
PayloadPart m_chunk;
bool m_chunkHasBeenSet = false;
- InternalServerException m_internalServerException;
+ BedrockRuntimeError m_internalServerException;
bool m_internalServerExceptionHasBeenSet = false;
ModelStreamErrorException m_modelStreamErrorException;
bool m_modelStreamErrorExceptionHasBeenSet = false;
- ValidationException m_validationException;
+ BedrockRuntimeError m_validationException;
bool m_validationExceptionHasBeenSet = false;
- ThrottlingException m_throttlingException;
+ BedrockRuntimeError m_throttlingException;
bool m_throttlingExceptionHasBeenSet = false;
- ModelTimeoutException m_modelTimeoutException;
+ BedrockRuntimeError m_modelTimeoutException;
bool m_modelTimeoutExceptionHasBeenSet = false;
- ServiceUnavailableException m_serviceUnavailableException;
+ BedrockRuntimeError m_serviceUnavailableException;
bool m_serviceUnavailableExceptionHasBeenSet = false;
};
diff --git a/generated/src/aws-cpp-sdk-iotsitewise/include/aws/iotsitewise/model/ResponseStream.h b/generated/src/aws-cpp-sdk-iotsitewise/include/aws/iotsitewise/model/ResponseStream.h
index 274937ea6ef..5a3908bd19f 100644
--- a/generated/src/aws-cpp-sdk-iotsitewise/include/aws/iotsitewise/model/ResponseStream.h
+++ b/generated/src/aws-cpp-sdk-iotsitewise/include/aws/iotsitewise/model/ResponseStream.h
@@ -67,11 +67,11 @@ namespace Model
///@{
- inline const AccessDeniedException& GetAccessDeniedException() const { return m_accessDeniedException; }
+ inline const IoTSiteWiseError& GetAccessDeniedException() const { return m_accessDeniedException; }
inline bool AccessDeniedExceptionHasBeenSet() const { return m_accessDeniedExceptionHasBeenSet; }
- template
+ template