Class: Aws::Connect::Types::CreateAttachedFileResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::CreateAttachedFileResponse
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Response from CreateAttachedFile API.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_time ⇒ String
The time of Creation of the file resource as an ISO timestamp.
-
#file_arn ⇒ String
The unique identifier of the attached file resource (ARN).
-
#file_id ⇒ String
The unique identifier of the attached file resource.
-
#file_status ⇒ String
The current status of the attached file.
Instance Attribute Details
#creation_time ⇒ String
The time of Creation of the file resource as an ISO timestamp. It's
specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For
example, 2024-05-03T02:41:28.172Z.
5352 5353 5354 5355 5356 5357 5358 5359 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 5352 class CreateAttachedFileResponse < Struct.new( :file_arn, :file_id, :creation_time, :file_status) SENSITIVE = [] include Aws::Structure end |
#file_arn ⇒ String
The unique identifier of the attached file resource (ARN).
5352 5353 5354 5355 5356 5357 5358 5359 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 5352 class CreateAttachedFileResponse < Struct.new( :file_arn, :file_id, :creation_time, :file_status) SENSITIVE = [] include Aws::Structure end |
#file_id ⇒ String
The unique identifier of the attached file resource.
5352 5353 5354 5355 5356 5357 5358 5359 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 5352 class CreateAttachedFileResponse < Struct.new( :file_arn, :file_id, :creation_time, :file_status) SENSITIVE = [] include Aws::Structure end |
#file_status ⇒ String
The current status of the attached file. Valid values: PROCESSING
| APPROVED | REJECTED | FAILED.
5352 5353 5354 5355 5356 5357 5358 5359 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 5352 class CreateAttachedFileResponse < Struct.new( :file_arn, :file_id, :creation_time, :file_status) SENSITIVE = [] include Aws::Structure end |