Class: Aws::CloudWatchLogs::Types::ImportBatch
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::ImportBatch
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
A collection of events being imported to CloudWatch
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#batch_id ⇒ String
The unique identifier of the import batch.
-
#error_message ⇒ String
The error message if the batch failed to import.
-
#status ⇒ String
The current status of the import batch.
Instance Attribute Details
#batch_id ⇒ String
The unique identifier of the import batch.
4430 4431 4432 4433 4434 4435 4436 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4430 class ImportBatch < Struct.new( :batch_id, :status, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
The error message if the batch failed to import. Only present when status is FAILED.
4430 4431 4432 4433 4434 4435 4436 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4430 class ImportBatch < Struct.new( :batch_id, :status, :error_message) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the import batch. Valid values are IN_PROGRESS, CANCELLED, COMPLETED and FAILED.
4430 4431 4432 4433 4434 4435 4436 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4430 class ImportBatch < Struct.new( :batch_id, :status, :error_message) SENSITIVE = [] include Aws::Structure end |