Class: Aws::SecurityIR::Types::GetCaseAttachmentUploadUrlRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityIR::Types::GetCaseAttachmentUploadUrlRequest
- Defined in:
- gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:file_name]
Instance Attribute Summary collapse
-
#case_id ⇒ String
Required element for GetCaseAttachmentUploadUrl to identify the case ID for uploading an attachment.
-
#client_token ⇒ String
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. -
#content_length ⇒ Integer
Required element for GetCaseAttachmentUploadUrl to identify the size of the file attachment.
-
#file_name ⇒ String
Required element for GetCaseAttachmentUploadUrl to identify the file name of the attachment to upload.
Instance Attribute Details
#case_id ⇒ String
Required element for GetCaseAttachmentUploadUrl to identify the case ID for uploading an attachment.
496 497 498 499 500 501 502 503 |
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 496 class GetCaseAttachmentUploadUrlRequest < Struct.new( :case_id, :file_name, :content_length, :client_token) SENSITIVE = [:file_name] include Aws::Structure end |
#client_token ⇒ String
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.
496 497 498 499 500 501 502 503 |
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 496 class GetCaseAttachmentUploadUrlRequest < Struct.new( :case_id, :file_name, :content_length, :client_token) SENSITIVE = [:file_name] include Aws::Structure end |
#content_length ⇒ Integer
Required element for GetCaseAttachmentUploadUrl to identify the size of the file attachment.
496 497 498 499 500 501 502 503 |
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 496 class GetCaseAttachmentUploadUrlRequest < Struct.new( :case_id, :file_name, :content_length, :client_token) SENSITIVE = [:file_name] include Aws::Structure end |
#file_name ⇒ String
Required element for GetCaseAttachmentUploadUrl to identify the file name of the attachment to upload.
496 497 498 499 500 501 502 503 |
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 496 class GetCaseAttachmentUploadUrlRequest < Struct.new( :case_id, :file_name, :content_length, :client_token) SENSITIVE = [:file_name] include Aws::Structure end |