- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
UpdateCaseCommentCommand
Grants permission to update an existing case comment.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { SecurityIRClient, UpdateCaseCommentCommand } from "@aws-sdk/client-security-ir"; // ES Modules import
// const { SecurityIRClient, UpdateCaseCommentCommand } = require("@aws-sdk/client-security-ir"); // CommonJS import
const client = new SecurityIRClient(config);
const input = { // UpdateCaseCommentRequest
caseId: "STRING_VALUE", // required
commentId: "STRING_VALUE", // required
body: "STRING_VALUE", // required
};
const command = new UpdateCaseCommentCommand(input);
const response = await client.send(command);
// { // UpdateCaseCommentResponse
// commentId: "STRING_VALUE", // required
// body: "STRING_VALUE",
// };
Example Usage
Loading code editorLoading code editor
UpdateCaseCommentCommand Input
See UpdateCaseCommentCommandInput for more details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
body Required | string | undefined | Required element for UpdateCaseComment to identify the content for the comment to be updated. |
caseId Required | string | undefined | Required element for UpdateCaseComment to identify the case ID containing the comment to be updated. |
commentId Required | string | undefined | Required element for UpdateCaseComment to identify the case ID to be updated. |
UpdateCaseCommentCommand Output
See UpdateCaseCommentCommandOutput for details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
commentId Required | string | undefined | Response element for UpdateCaseComment providing the updated comment ID. |
body | string | undefined | Response element for UpdateCaseComment providing the updated comment content. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
AccessDeniedException | client | <p/> |
ConflictException | client | <p/> |
InternalServerException | server | <p/> |
InvalidTokenException | client | <p/> |
ResourceNotFoundException | client | <p/> |
SecurityIncidentResponseNotActiveException | client | <p/> |
ServiceQuotaExceededException | client | <p/> |
ThrottlingException | client | <p/> |
ValidationException | client | <p/> |
SecurityIRServiceException | Base exception class for all service exceptions from SecurityIR service. |