Class: Aws::SecurityIR::Types::CreateCaseCommentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityIR::Types::CreateCaseCommentRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityir/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:body]
Instance Attribute Summary collapse
-
#body ⇒ String
Required element used in combination with CreateCaseComment to add content for the new comment.
-
#case_id ⇒ String
Required element used in combination with CreateCaseComment to specify a case ID.
-
#client_token ⇒ String
<note markdown=“1”> The ‘clientToken` field is an idempotency key used to ensure that repeated attempts for a single action will be ignored by the server during retries.
Instance Attribute Details
#body ⇒ String
Required element used in combination with CreateCaseComment to add content for the new comment.
251 252 253 254 255 256 257 |
# File 'lib/aws-sdk-securityir/types.rb', line 251 class CreateCaseCommentRequest < Struct.new( :case_id, :client_token, :body) SENSITIVE = [:body] include Aws::Structure end |
#case_id ⇒ String
Required element used in combination with CreateCaseComment to specify a case ID.
251 252 253 254 255 256 257 |
# File 'lib/aws-sdk-securityir/types.rb', line 251 class CreateCaseCommentRequest < Struct.new( :case_id, :client_token, :body) SENSITIVE = [:body] include Aws::Structure end |
#client_token ⇒ String
<note markdown=“1”> The ‘clientToken` field is an idempotency key used to ensure that repeated attempts for a single action will be ignored by the server during retries. A caller supplied unique ID (typically a UUID) should be provided.
</note>
**A suitable default value is auto-generated.** You should normally not need to pass this option.
251 252 253 254 255 256 257 |
# File 'lib/aws-sdk-securityir/types.rb', line 251 class CreateCaseCommentRequest < Struct.new( :case_id, :client_token, :body) SENSITIVE = [:body] include Aws::Structure end |