Class: Aws::SecurityIR::Types::CreateCaseCommentRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:body]

Instance Attribute Summary collapse

Instance Attribute Details

#bodyString

Required element used in combination with CreateCaseComment to add content for the new comment.

Returns:

  • (String)


226
227
228
229
230
231
232
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 226

class CreateCaseCommentRequest < Struct.new(
  :case_id,
  :client_token,
  :body)
  SENSITIVE = [:body]
  include Aws::Structure
end

#case_idString

Required element used in combination with CreateCaseComment to specify a case ID.

Returns:

  • (String)


226
227
228
229
230
231
232
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 226

class CreateCaseCommentRequest < Struct.new(
  :case_id,
  :client_token,
  :body)
  SENSITIVE = [:body]
  include Aws::Structure
end

#client_tokenString

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.

A suitable default value is auto-generated. You should normally not need to pass this option.

Returns:

  • (String)


226
227
228
229
230
231
232
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 226

class CreateCaseCommentRequest < Struct.new(
  :case_id,
  :client_token,
  :body)
  SENSITIVE = [:body]
  include Aws::Structure
end