aws-sdk-cloudwatchlogs 1.133.0 → 1.135.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudwatchlogs/client.rb +893 -177
- data/lib/aws-sdk-cloudwatchlogs/client_api.rb +346 -0
- data/lib/aws-sdk-cloudwatchlogs/types.rb +924 -165
- data/lib/aws-sdk-cloudwatchlogs.rb +1 -1
- data/sig/client.rbs +141 -1
- data/sig/types.rbs +202 -0
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -90,12 +90,40 @@ module Aws
|
|
|
90
90
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
91
91
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
92
92
|
|
|
93
|
+
interface _AssociateSourceToS3TableIntegrationResponseSuccess
|
|
94
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateSourceToS3TableIntegrationResponse]
|
|
95
|
+
def identifier: () -> ::String
|
|
96
|
+
end
|
|
97
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#associate_source_to_s3_table_integration-instance_method
|
|
98
|
+
def associate_source_to_s3_table_integration: (
|
|
99
|
+
integration_arn: ::String,
|
|
100
|
+
data_source: {
|
|
101
|
+
name: ::String,
|
|
102
|
+
type: ::String?
|
|
103
|
+
}
|
|
104
|
+
) -> _AssociateSourceToS3TableIntegrationResponseSuccess
|
|
105
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateSourceToS3TableIntegrationResponseSuccess
|
|
106
|
+
|
|
93
107
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#cancel_export_task-instance_method
|
|
94
108
|
def cancel_export_task: (
|
|
95
109
|
task_id: ::String
|
|
96
110
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
97
111
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
98
112
|
|
|
113
|
+
interface _CancelImportTaskResponseSuccess
|
|
114
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelImportTaskResponse]
|
|
115
|
+
def import_id: () -> ::String
|
|
116
|
+
def import_statistics: () -> Types::ImportStatistics
|
|
117
|
+
def import_status: () -> ("IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED")
|
|
118
|
+
def creation_time: () -> ::Integer
|
|
119
|
+
def last_updated_time: () -> ::Integer
|
|
120
|
+
end
|
|
121
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#cancel_import_task-instance_method
|
|
122
|
+
def cancel_import_task: (
|
|
123
|
+
import_id: ::String
|
|
124
|
+
) -> _CancelImportTaskResponseSuccess
|
|
125
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelImportTaskResponseSuccess
|
|
126
|
+
|
|
99
127
|
interface _CreateDeliveryResponseSuccess
|
|
100
128
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDeliveryResponse]
|
|
101
129
|
def delivery: () -> Types::Delivery
|
|
@@ -130,6 +158,23 @@ module Aws
|
|
|
130
158
|
) -> _CreateExportTaskResponseSuccess
|
|
131
159
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateExportTaskResponseSuccess
|
|
132
160
|
|
|
161
|
+
interface _CreateImportTaskResponseSuccess
|
|
162
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateImportTaskResponse]
|
|
163
|
+
def import_id: () -> ::String
|
|
164
|
+
def import_destination_arn: () -> ::String
|
|
165
|
+
def creation_time: () -> ::Integer
|
|
166
|
+
end
|
|
167
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#create_import_task-instance_method
|
|
168
|
+
def create_import_task: (
|
|
169
|
+
import_source_arn: ::String,
|
|
170
|
+
import_role_arn: ::String,
|
|
171
|
+
?import_filter: {
|
|
172
|
+
start_event_time: ::Integer?,
|
|
173
|
+
end_event_time: ::Integer?
|
|
174
|
+
}
|
|
175
|
+
) -> _CreateImportTaskResponseSuccess
|
|
176
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateImportTaskResponseSuccess
|
|
177
|
+
|
|
133
178
|
interface _CreateLogAnomalyDetectorResponseSuccess
|
|
134
179
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateLogAnomalyDetectorResponse]
|
|
135
180
|
def anomaly_detector_arn: () -> ::String
|
|
@@ -431,6 +476,37 @@ module Aws
|
|
|
431
476
|
) -> _DescribeFieldIndexesResponseSuccess
|
|
432
477
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFieldIndexesResponseSuccess
|
|
433
478
|
|
|
479
|
+
interface _DescribeImportTaskBatchesResponseSuccess
|
|
480
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeImportTaskBatchesResponse]
|
|
481
|
+
def import_source_arn: () -> ::String
|
|
482
|
+
def import_id: () -> ::String
|
|
483
|
+
def import_batches: () -> ::Array[Types::ImportBatch]
|
|
484
|
+
def next_token: () -> ::String
|
|
485
|
+
end
|
|
486
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#describe_import_task_batches-instance_method
|
|
487
|
+
def describe_import_task_batches: (
|
|
488
|
+
import_id: ::String,
|
|
489
|
+
?batch_import_status: Array[("IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED")],
|
|
490
|
+
?limit: ::Integer,
|
|
491
|
+
?next_token: ::String
|
|
492
|
+
) -> _DescribeImportTaskBatchesResponseSuccess
|
|
493
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeImportTaskBatchesResponseSuccess
|
|
494
|
+
|
|
495
|
+
interface _DescribeImportTasksResponseSuccess
|
|
496
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeImportTasksResponse]
|
|
497
|
+
def imports: () -> ::Array[Types::Import]
|
|
498
|
+
def next_token: () -> ::String
|
|
499
|
+
end
|
|
500
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#describe_import_tasks-instance_method
|
|
501
|
+
def describe_import_tasks: (
|
|
502
|
+
?import_id: ::String,
|
|
503
|
+
?import_status: ("IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED"),
|
|
504
|
+
?import_source_arn: ::String,
|
|
505
|
+
?limit: ::Integer,
|
|
506
|
+
?next_token: ::String
|
|
507
|
+
) -> _DescribeImportTasksResponseSuccess
|
|
508
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeImportTasksResponseSuccess
|
|
509
|
+
|
|
434
510
|
interface _DescribeIndexPoliciesResponseSuccess
|
|
435
511
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeIndexPoliciesResponse]
|
|
436
512
|
def index_policies: () -> ::Array[Types::IndexPolicy]
|
|
@@ -558,6 +634,16 @@ module Aws
|
|
|
558
634
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
559
635
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
560
636
|
|
|
637
|
+
interface _DisassociateSourceFromS3TableIntegrationResponseSuccess
|
|
638
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateSourceFromS3TableIntegrationResponse]
|
|
639
|
+
def identifier: () -> ::String
|
|
640
|
+
end
|
|
641
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#disassociate_source_from_s3_table_integration-instance_method
|
|
642
|
+
def disassociate_source_from_s3_table_integration: (
|
|
643
|
+
identifier: ::String
|
|
644
|
+
) -> _DisassociateSourceFromS3TableIntegrationResponseSuccess
|
|
645
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateSourceFromS3TableIntegrationResponseSuccess
|
|
646
|
+
|
|
561
647
|
interface _FilterLogEventsResponseSuccess
|
|
562
648
|
include ::Seahorse::Client::_ResponseSuccess[Types::FilterLogEventsResponse]
|
|
563
649
|
def events: () -> ::Array[Types::FilteredLogEvent]
|
|
@@ -683,6 +769,17 @@ module Aws
|
|
|
683
769
|
) -> _GetLogEventsResponseSuccess
|
|
684
770
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLogEventsResponseSuccess
|
|
685
771
|
|
|
772
|
+
interface _GetLogFieldsResponseSuccess
|
|
773
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetLogFieldsResponse]
|
|
774
|
+
def log_fields: () -> ::Array[Types::LogFieldsListItem]
|
|
775
|
+
end
|
|
776
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#get_log_fields-instance_method
|
|
777
|
+
def get_log_fields: (
|
|
778
|
+
data_source_name: ::String,
|
|
779
|
+
data_source_type: ::String
|
|
780
|
+
) -> _GetLogFieldsResponseSuccess
|
|
781
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLogFieldsResponseSuccess
|
|
782
|
+
|
|
686
783
|
interface _GetLogGroupFieldsResponseSuccess
|
|
687
784
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetLogGroupFieldsResponse]
|
|
688
785
|
def log_group_fields: () -> ::Array[Types::LogGroupField]
|
|
@@ -789,6 +886,29 @@ module Aws
|
|
|
789
886
|
) -> _GetTransformerResponseSuccess
|
|
790
887
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTransformerResponseSuccess
|
|
791
888
|
|
|
889
|
+
interface _ListAggregateLogGroupSummariesResponseSuccess
|
|
890
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAggregateLogGroupSummariesResponse]
|
|
891
|
+
def aggregate_log_group_summaries: () -> ::Array[Types::AggregateLogGroupSummary]
|
|
892
|
+
def next_token: () -> ::String
|
|
893
|
+
end
|
|
894
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#list_aggregate_log_group_summaries-instance_method
|
|
895
|
+
def list_aggregate_log_group_summaries: (
|
|
896
|
+
?account_identifiers: Array[::String],
|
|
897
|
+
?include_linked_accounts: bool,
|
|
898
|
+
?log_group_class: ("STANDARD" | "INFREQUENT_ACCESS" | "DELIVERY"),
|
|
899
|
+
?log_group_name_pattern: ::String,
|
|
900
|
+
?data_sources: Array[
|
|
901
|
+
{
|
|
902
|
+
name: ::String,
|
|
903
|
+
type: ::String?
|
|
904
|
+
},
|
|
905
|
+
],
|
|
906
|
+
group_by: ("DATA_SOURCE_NAME_TYPE_AND_FORMAT" | "DATA_SOURCE_NAME_AND_TYPE"),
|
|
907
|
+
?next_token: ::String,
|
|
908
|
+
?limit: ::Integer
|
|
909
|
+
) -> _ListAggregateLogGroupSummariesResponseSuccess
|
|
910
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAggregateLogGroupSummariesResponseSuccess
|
|
911
|
+
|
|
792
912
|
interface _ListAnomaliesResponseSuccess
|
|
793
913
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAnomaliesResponse]
|
|
794
914
|
def anomalies: () -> ::Array[Types::Anomaly]
|
|
@@ -840,7 +960,14 @@ module Aws
|
|
|
840
960
|
?include_linked_accounts: bool,
|
|
841
961
|
?account_identifiers: Array[::String],
|
|
842
962
|
?next_token: ::String,
|
|
843
|
-
?limit: ::Integer
|
|
963
|
+
?limit: ::Integer,
|
|
964
|
+
?data_sources: Array[
|
|
965
|
+
{
|
|
966
|
+
name: ::String,
|
|
967
|
+
type: ::String?
|
|
968
|
+
},
|
|
969
|
+
],
|
|
970
|
+
?field_index_names: Array[::String]
|
|
844
971
|
) -> _ListLogGroupsResponseSuccess
|
|
845
972
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLogGroupsResponseSuccess
|
|
846
973
|
|
|
@@ -870,6 +997,19 @@ module Aws
|
|
|
870
997
|
) -> _ListScheduledQueriesResponseSuccess
|
|
871
998
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListScheduledQueriesResponseSuccess
|
|
872
999
|
|
|
1000
|
+
interface _ListSourcesForS3TableIntegrationResponseSuccess
|
|
1001
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSourcesForS3TableIntegrationResponse]
|
|
1002
|
+
def sources: () -> ::Array[Types::S3TableIntegrationSource]
|
|
1003
|
+
def next_token: () -> ::String
|
|
1004
|
+
end
|
|
1005
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#list_sources_for_s3_table_integration-instance_method
|
|
1006
|
+
def list_sources_for_s3_table_integration: (
|
|
1007
|
+
integration_arn: ::String,
|
|
1008
|
+
?max_results: ::Integer,
|
|
1009
|
+
?next_token: ::String
|
|
1010
|
+
) -> _ListSourcesForS3TableIntegrationResponseSuccess
|
|
1011
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSourcesForS3TableIntegrationResponseSuccess
|
|
1012
|
+
|
|
873
1013
|
interface _ListTagsForResourceResponseSuccess
|
|
874
1014
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
|
875
1015
|
def tags: () -> ::Hash[::String, ::String]
|
data/sig/types.rbs
CHANGED
|
@@ -34,6 +34,12 @@ module Aws::CloudWatchLogs
|
|
|
34
34
|
SENSITIVE: []
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
+
class AggregateLogGroupSummary
|
|
38
|
+
attr_accessor log_group_count: ::Integer
|
|
39
|
+
attr_accessor grouping_identifiers: ::Array[Types::GroupingIdentifier]
|
|
40
|
+
SENSITIVE: []
|
|
41
|
+
end
|
|
42
|
+
|
|
37
43
|
class Anomaly
|
|
38
44
|
attr_accessor anomaly_id: ::String
|
|
39
45
|
attr_accessor pattern_id: ::String
|
|
@@ -78,6 +84,17 @@ module Aws::CloudWatchLogs
|
|
|
78
84
|
SENSITIVE: []
|
|
79
85
|
end
|
|
80
86
|
|
|
87
|
+
class AssociateSourceToS3TableIntegrationRequest
|
|
88
|
+
attr_accessor integration_arn: ::String
|
|
89
|
+
attr_accessor data_source: Types::DataSource
|
|
90
|
+
SENSITIVE: []
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
class AssociateSourceToS3TableIntegrationResponse
|
|
94
|
+
attr_accessor identifier: ::String
|
|
95
|
+
SENSITIVE: []
|
|
96
|
+
end
|
|
97
|
+
|
|
81
98
|
class CSV
|
|
82
99
|
attr_accessor quote_character: ::String
|
|
83
100
|
attr_accessor delimiter: ::String
|
|
@@ -91,6 +108,20 @@ module Aws::CloudWatchLogs
|
|
|
91
108
|
SENSITIVE: []
|
|
92
109
|
end
|
|
93
110
|
|
|
111
|
+
class CancelImportTaskRequest
|
|
112
|
+
attr_accessor import_id: ::String
|
|
113
|
+
SENSITIVE: []
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
class CancelImportTaskResponse
|
|
117
|
+
attr_accessor import_id: ::String
|
|
118
|
+
attr_accessor import_statistics: Types::ImportStatistics
|
|
119
|
+
attr_accessor import_status: ("IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED")
|
|
120
|
+
attr_accessor creation_time: ::Integer
|
|
121
|
+
attr_accessor last_updated_time: ::Integer
|
|
122
|
+
SENSITIVE: []
|
|
123
|
+
end
|
|
124
|
+
|
|
94
125
|
class ConfigurationTemplate
|
|
95
126
|
attr_accessor service: ::String
|
|
96
127
|
attr_accessor log_type: ::String
|
|
@@ -158,6 +189,20 @@ module Aws::CloudWatchLogs
|
|
|
158
189
|
SENSITIVE: []
|
|
159
190
|
end
|
|
160
191
|
|
|
192
|
+
class CreateImportTaskRequest
|
|
193
|
+
attr_accessor import_source_arn: ::String
|
|
194
|
+
attr_accessor import_role_arn: ::String
|
|
195
|
+
attr_accessor import_filter: Types::ImportFilter
|
|
196
|
+
SENSITIVE: []
|
|
197
|
+
end
|
|
198
|
+
|
|
199
|
+
class CreateImportTaskResponse
|
|
200
|
+
attr_accessor import_id: ::String
|
|
201
|
+
attr_accessor import_destination_arn: ::String
|
|
202
|
+
attr_accessor creation_time: ::Integer
|
|
203
|
+
SENSITIVE: []
|
|
204
|
+
end
|
|
205
|
+
|
|
161
206
|
class CreateLogAnomalyDetectorRequest
|
|
162
207
|
attr_accessor log_group_arn_list: ::Array[::String]
|
|
163
208
|
attr_accessor detector_name: ::String
|
|
@@ -218,6 +263,18 @@ module Aws::CloudWatchLogs
|
|
|
218
263
|
SENSITIVE: []
|
|
219
264
|
end
|
|
220
265
|
|
|
266
|
+
class DataSource
|
|
267
|
+
attr_accessor name: ::String
|
|
268
|
+
attr_accessor type: ::String
|
|
269
|
+
SENSITIVE: []
|
|
270
|
+
end
|
|
271
|
+
|
|
272
|
+
class DataSourceFilter
|
|
273
|
+
attr_accessor name: ::String
|
|
274
|
+
attr_accessor type: ::String
|
|
275
|
+
SENSITIVE: []
|
|
276
|
+
end
|
|
277
|
+
|
|
221
278
|
class DateTimeConverter
|
|
222
279
|
attr_accessor source: ::String
|
|
223
280
|
attr_accessor target: ::String
|
|
@@ -493,6 +550,37 @@ module Aws::CloudWatchLogs
|
|
|
493
550
|
SENSITIVE: []
|
|
494
551
|
end
|
|
495
552
|
|
|
553
|
+
class DescribeImportTaskBatchesRequest
|
|
554
|
+
attr_accessor import_id: ::String
|
|
555
|
+
attr_accessor batch_import_status: ::Array[("IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED")]
|
|
556
|
+
attr_accessor limit: ::Integer
|
|
557
|
+
attr_accessor next_token: ::String
|
|
558
|
+
SENSITIVE: []
|
|
559
|
+
end
|
|
560
|
+
|
|
561
|
+
class DescribeImportTaskBatchesResponse
|
|
562
|
+
attr_accessor import_source_arn: ::String
|
|
563
|
+
attr_accessor import_id: ::String
|
|
564
|
+
attr_accessor import_batches: ::Array[Types::ImportBatch]
|
|
565
|
+
attr_accessor next_token: ::String
|
|
566
|
+
SENSITIVE: []
|
|
567
|
+
end
|
|
568
|
+
|
|
569
|
+
class DescribeImportTasksRequest
|
|
570
|
+
attr_accessor import_id: ::String
|
|
571
|
+
attr_accessor import_status: ("IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED")
|
|
572
|
+
attr_accessor import_source_arn: ::String
|
|
573
|
+
attr_accessor limit: ::Integer
|
|
574
|
+
attr_accessor next_token: ::String
|
|
575
|
+
SENSITIVE: []
|
|
576
|
+
end
|
|
577
|
+
|
|
578
|
+
class DescribeImportTasksResponse
|
|
579
|
+
attr_accessor imports: ::Array[Types::Import]
|
|
580
|
+
attr_accessor next_token: ::String
|
|
581
|
+
SENSITIVE: []
|
|
582
|
+
end
|
|
583
|
+
|
|
496
584
|
class DescribeIndexPoliciesRequest
|
|
497
585
|
attr_accessor log_group_identifiers: ::Array[::String]
|
|
498
586
|
attr_accessor next_token: ::String
|
|
@@ -634,6 +722,16 @@ module Aws::CloudWatchLogs
|
|
|
634
722
|
SENSITIVE: []
|
|
635
723
|
end
|
|
636
724
|
|
|
725
|
+
class DisassociateSourceFromS3TableIntegrationRequest
|
|
726
|
+
attr_accessor identifier: ::String
|
|
727
|
+
SENSITIVE: []
|
|
728
|
+
end
|
|
729
|
+
|
|
730
|
+
class DisassociateSourceFromS3TableIntegrationResponse
|
|
731
|
+
attr_accessor identifier: ::String
|
|
732
|
+
SENSITIVE: []
|
|
733
|
+
end
|
|
734
|
+
|
|
637
735
|
class Entity
|
|
638
736
|
attr_accessor key_attributes: ::Hash[::String, ::String]
|
|
639
737
|
attr_accessor attributes: ::Hash[::String, ::String]
|
|
@@ -671,6 +769,7 @@ module Aws::CloudWatchLogs
|
|
|
671
769
|
attr_accessor last_scan_time: ::Integer
|
|
672
770
|
attr_accessor first_event_time: ::Integer
|
|
673
771
|
attr_accessor last_event_time: ::Integer
|
|
772
|
+
attr_accessor type: ("FACET" | "FIELD_INDEX")
|
|
674
773
|
SENSITIVE: []
|
|
675
774
|
end
|
|
676
775
|
|
|
@@ -814,6 +913,17 @@ module Aws::CloudWatchLogs
|
|
|
814
913
|
SENSITIVE: []
|
|
815
914
|
end
|
|
816
915
|
|
|
916
|
+
class GetLogFieldsRequest
|
|
917
|
+
attr_accessor data_source_name: ::String
|
|
918
|
+
attr_accessor data_source_type: ::String
|
|
919
|
+
SENSITIVE: []
|
|
920
|
+
end
|
|
921
|
+
|
|
922
|
+
class GetLogFieldsResponse
|
|
923
|
+
attr_accessor log_fields: ::Array[Types::LogFieldsListItem]
|
|
924
|
+
SENSITIVE: []
|
|
925
|
+
end
|
|
926
|
+
|
|
817
927
|
class GetLogGroupFieldsRequest
|
|
818
928
|
attr_accessor log_group_name: ::String
|
|
819
929
|
attr_accessor time: ::Integer
|
|
@@ -926,6 +1036,43 @@ module Aws::CloudWatchLogs
|
|
|
926
1036
|
SENSITIVE: []
|
|
927
1037
|
end
|
|
928
1038
|
|
|
1039
|
+
class GroupingIdentifier
|
|
1040
|
+
attr_accessor key: ::String
|
|
1041
|
+
attr_accessor value: ::String
|
|
1042
|
+
SENSITIVE: []
|
|
1043
|
+
end
|
|
1044
|
+
|
|
1045
|
+
class Import
|
|
1046
|
+
attr_accessor import_id: ::String
|
|
1047
|
+
attr_accessor import_source_arn: ::String
|
|
1048
|
+
attr_accessor import_status: ("IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED")
|
|
1049
|
+
attr_accessor import_destination_arn: ::String
|
|
1050
|
+
attr_accessor import_statistics: Types::ImportStatistics
|
|
1051
|
+
attr_accessor import_filter: Types::ImportFilter
|
|
1052
|
+
attr_accessor creation_time: ::Integer
|
|
1053
|
+
attr_accessor last_updated_time: ::Integer
|
|
1054
|
+
attr_accessor error_message: ::String
|
|
1055
|
+
SENSITIVE: []
|
|
1056
|
+
end
|
|
1057
|
+
|
|
1058
|
+
class ImportBatch
|
|
1059
|
+
attr_accessor batch_id: ::String
|
|
1060
|
+
attr_accessor status: ("IN_PROGRESS" | "CANCELLED" | "COMPLETED" | "FAILED")
|
|
1061
|
+
attr_accessor error_message: ::String
|
|
1062
|
+
SENSITIVE: []
|
|
1063
|
+
end
|
|
1064
|
+
|
|
1065
|
+
class ImportFilter
|
|
1066
|
+
attr_accessor start_event_time: ::Integer
|
|
1067
|
+
attr_accessor end_event_time: ::Integer
|
|
1068
|
+
SENSITIVE: []
|
|
1069
|
+
end
|
|
1070
|
+
|
|
1071
|
+
class ImportStatistics
|
|
1072
|
+
attr_accessor bytes_imported: ::Integer
|
|
1073
|
+
SENSITIVE: []
|
|
1074
|
+
end
|
|
1075
|
+
|
|
929
1076
|
class IndexPolicy
|
|
930
1077
|
attr_accessor log_group_identifier: ::String
|
|
931
1078
|
attr_accessor last_update_time: ::Integer
|
|
@@ -982,6 +1129,24 @@ module Aws::CloudWatchLogs
|
|
|
982
1129
|
class LimitExceededException < Aws::EmptyStructure
|
|
983
1130
|
end
|
|
984
1131
|
|
|
1132
|
+
class ListAggregateLogGroupSummariesRequest
|
|
1133
|
+
attr_accessor account_identifiers: ::Array[::String]
|
|
1134
|
+
attr_accessor include_linked_accounts: bool
|
|
1135
|
+
attr_accessor log_group_class: ("STANDARD" | "INFREQUENT_ACCESS" | "DELIVERY")
|
|
1136
|
+
attr_accessor log_group_name_pattern: ::String
|
|
1137
|
+
attr_accessor data_sources: ::Array[Types::DataSourceFilter]
|
|
1138
|
+
attr_accessor group_by: ("DATA_SOURCE_NAME_TYPE_AND_FORMAT" | "DATA_SOURCE_NAME_AND_TYPE")
|
|
1139
|
+
attr_accessor next_token: ::String
|
|
1140
|
+
attr_accessor limit: ::Integer
|
|
1141
|
+
SENSITIVE: []
|
|
1142
|
+
end
|
|
1143
|
+
|
|
1144
|
+
class ListAggregateLogGroupSummariesResponse
|
|
1145
|
+
attr_accessor aggregate_log_group_summaries: ::Array[Types::AggregateLogGroupSummary]
|
|
1146
|
+
attr_accessor next_token: ::String
|
|
1147
|
+
SENSITIVE: []
|
|
1148
|
+
end
|
|
1149
|
+
|
|
985
1150
|
class ListAnomaliesRequest
|
|
986
1151
|
attr_accessor anomaly_detector_arn: ::String
|
|
987
1152
|
attr_accessor suppression_state: ("SUPPRESSED" | "UNSUPPRESSED")
|
|
@@ -1041,6 +1206,8 @@ module Aws::CloudWatchLogs
|
|
|
1041
1206
|
attr_accessor account_identifiers: ::Array[::String]
|
|
1042
1207
|
attr_accessor next_token: ::String
|
|
1043
1208
|
attr_accessor limit: ::Integer
|
|
1209
|
+
attr_accessor data_sources: ::Array[Types::DataSourceFilter]
|
|
1210
|
+
attr_accessor field_index_names: ::Array[::String]
|
|
1044
1211
|
SENSITIVE: []
|
|
1045
1212
|
end
|
|
1046
1213
|
|
|
@@ -1063,6 +1230,19 @@ module Aws::CloudWatchLogs
|
|
|
1063
1230
|
SENSITIVE: []
|
|
1064
1231
|
end
|
|
1065
1232
|
|
|
1233
|
+
class ListSourcesForS3TableIntegrationRequest
|
|
1234
|
+
attr_accessor integration_arn: ::String
|
|
1235
|
+
attr_accessor max_results: ::Integer
|
|
1236
|
+
attr_accessor next_token: ::String
|
|
1237
|
+
SENSITIVE: []
|
|
1238
|
+
end
|
|
1239
|
+
|
|
1240
|
+
class ListSourcesForS3TableIntegrationResponse
|
|
1241
|
+
attr_accessor sources: ::Array[Types::S3TableIntegrationSource]
|
|
1242
|
+
attr_accessor next_token: ::String
|
|
1243
|
+
SENSITIVE: []
|
|
1244
|
+
end
|
|
1245
|
+
|
|
1066
1246
|
class ListTagsForResourceRequest
|
|
1067
1247
|
attr_accessor resource_arn: ::String
|
|
1068
1248
|
SENSITIVE: []
|
|
@@ -1131,6 +1311,19 @@ module Aws::CloudWatchLogs
|
|
|
1131
1311
|
SENSITIVE: []
|
|
1132
1312
|
end
|
|
1133
1313
|
|
|
1314
|
+
class LogFieldType
|
|
1315
|
+
attr_accessor type: ::String
|
|
1316
|
+
attr_accessor element: Types::LogFieldType
|
|
1317
|
+
attr_accessor fields: ::Array[Types::LogFieldsListItem]
|
|
1318
|
+
SENSITIVE: []
|
|
1319
|
+
end
|
|
1320
|
+
|
|
1321
|
+
class LogFieldsListItem
|
|
1322
|
+
attr_accessor log_field_name: ::String
|
|
1323
|
+
attr_accessor log_field_type: Types::LogFieldType
|
|
1324
|
+
SENSITIVE: []
|
|
1325
|
+
end
|
|
1326
|
+
|
|
1134
1327
|
class LogGroup
|
|
1135
1328
|
attr_accessor log_group_name: ::String
|
|
1136
1329
|
attr_accessor creation_time: ::Integer
|
|
@@ -1715,6 +1908,15 @@ module Aws::CloudWatchLogs
|
|
|
1715
1908
|
SENSITIVE: []
|
|
1716
1909
|
end
|
|
1717
1910
|
|
|
1911
|
+
class S3TableIntegrationSource
|
|
1912
|
+
attr_accessor identifier: ::String
|
|
1913
|
+
attr_accessor data_source: Types::DataSource
|
|
1914
|
+
attr_accessor status: ("ACTIVE" | "UNHEALTHY" | "FAILED" | "DATA_SOURCE_DELETE_IN_PROGRESS")
|
|
1915
|
+
attr_accessor status_reason: ::String
|
|
1916
|
+
attr_accessor created_time_stamp: ::Integer
|
|
1917
|
+
SENSITIVE: []
|
|
1918
|
+
end
|
|
1919
|
+
|
|
1718
1920
|
class ScheduledQueryDestination
|
|
1719
1921
|
attr_accessor destination_type: ("S3")
|
|
1720
1922
|
attr_accessor destination_identifier: ::String
|