aws-sdk-cloudwatchlogs 1.129.0 → 1.131.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 +508 -10
- data/lib/aws-sdk-cloudwatchlogs/client_api.rb +281 -0
- data/lib/aws-sdk-cloudwatchlogs/errors.rb +11 -0
- data/lib/aws-sdk-cloudwatchlogs/types.rb +757 -7
- data/lib/aws-sdk-cloudwatchlogs.rb +1 -1
- data/sig/client.rbs +144 -2
- data/sig/errors.rbs +2 -0
- data/sig/types.rbs +177 -1
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -162,6 +162,35 @@ module Aws
|
|
|
162
162
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
163
163
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
164
164
|
|
|
165
|
+
interface _CreateScheduledQueryResponseSuccess
|
|
166
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateScheduledQueryResponse]
|
|
167
|
+
def scheduled_query_arn: () -> ::String
|
|
168
|
+
def state: () -> ("ENABLED" | "DISABLED")
|
|
169
|
+
end
|
|
170
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#create_scheduled_query-instance_method
|
|
171
|
+
def create_scheduled_query: (
|
|
172
|
+
name: ::String,
|
|
173
|
+
?description: ::String,
|
|
174
|
+
query_language: ("CWLI" | "SQL" | "PPL"),
|
|
175
|
+
query_string: ::String,
|
|
176
|
+
?log_group_identifiers: Array[::String],
|
|
177
|
+
schedule_expression: ::String,
|
|
178
|
+
?timezone: ::String,
|
|
179
|
+
?start_time_offset: ::Integer,
|
|
180
|
+
?destination_configuration: {
|
|
181
|
+
s3_configuration: {
|
|
182
|
+
destination_identifier: ::String,
|
|
183
|
+
role_arn: ::String
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
?schedule_start_time: ::Integer,
|
|
187
|
+
?schedule_end_time: ::Integer,
|
|
188
|
+
execution_role_arn: ::String,
|
|
189
|
+
?state: ("ENABLED" | "DISABLED"),
|
|
190
|
+
?tags: Hash[::String, ::String]
|
|
191
|
+
) -> _CreateScheduledQueryResponseSuccess
|
|
192
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateScheduledQueryResponseSuccess
|
|
193
|
+
|
|
165
194
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#delete_account_policy-instance_method
|
|
166
195
|
def delete_account_policy: (
|
|
167
196
|
policy_name: ::String,
|
|
@@ -274,6 +303,15 @@ module Aws
|
|
|
274
303
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
275
304
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
276
305
|
|
|
306
|
+
interface _DeleteScheduledQueryResponseSuccess
|
|
307
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteScheduledQueryResponse]
|
|
308
|
+
end
|
|
309
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#delete_scheduled_query-instance_method
|
|
310
|
+
def delete_scheduled_query: (
|
|
311
|
+
identifier: ::String
|
|
312
|
+
) -> _DeleteScheduledQueryResponseSuccess
|
|
313
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteScheduledQueryResponseSuccess
|
|
314
|
+
|
|
277
315
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#delete_subscription_filter-instance_method
|
|
278
316
|
def delete_subscription_filter: (
|
|
279
317
|
log_group_name: ::String,
|
|
@@ -692,6 +730,51 @@ module Aws
|
|
|
692
730
|
) -> _GetQueryResultsResponseSuccess
|
|
693
731
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetQueryResultsResponseSuccess
|
|
694
732
|
|
|
733
|
+
interface _GetScheduledQueryResponseSuccess
|
|
734
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetScheduledQueryResponse]
|
|
735
|
+
def scheduled_query_arn: () -> ::String
|
|
736
|
+
def name: () -> ::String
|
|
737
|
+
def description: () -> ::String
|
|
738
|
+
def query_language: () -> ("CWLI" | "SQL" | "PPL")
|
|
739
|
+
def query_string: () -> ::String
|
|
740
|
+
def log_group_identifiers: () -> ::Array[::String]
|
|
741
|
+
def schedule_expression: () -> ::String
|
|
742
|
+
def timezone: () -> ::String
|
|
743
|
+
def start_time_offset: () -> ::Integer
|
|
744
|
+
def destination_configuration: () -> Types::DestinationConfiguration
|
|
745
|
+
def state: () -> ("ENABLED" | "DISABLED")
|
|
746
|
+
def last_triggered_time: () -> ::Integer
|
|
747
|
+
def last_execution_status: () -> ("Running" | "InvalidQuery" | "Complete" | "Failed" | "Timeout")
|
|
748
|
+
def schedule_start_time: () -> ::Integer
|
|
749
|
+
def schedule_end_time: () -> ::Integer
|
|
750
|
+
def execution_role_arn: () -> ::String
|
|
751
|
+
def creation_time: () -> ::Integer
|
|
752
|
+
def last_updated_time: () -> ::Integer
|
|
753
|
+
end
|
|
754
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#get_scheduled_query-instance_method
|
|
755
|
+
def get_scheduled_query: (
|
|
756
|
+
identifier: ::String
|
|
757
|
+
) -> _GetScheduledQueryResponseSuccess
|
|
758
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetScheduledQueryResponseSuccess
|
|
759
|
+
|
|
760
|
+
interface _GetScheduledQueryHistoryResponseSuccess
|
|
761
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetScheduledQueryHistoryResponse]
|
|
762
|
+
def name: () -> ::String
|
|
763
|
+
def scheduled_query_arn: () -> ::String
|
|
764
|
+
def trigger_history: () -> ::Array[Types::TriggerHistoryRecord]
|
|
765
|
+
def next_token: () -> ::String
|
|
766
|
+
end
|
|
767
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#get_scheduled_query_history-instance_method
|
|
768
|
+
def get_scheduled_query_history: (
|
|
769
|
+
identifier: ::String,
|
|
770
|
+
start_time: ::Integer,
|
|
771
|
+
end_time: ::Integer,
|
|
772
|
+
?execution_statuses: Array[("Running" | "InvalidQuery" | "Complete" | "Failed" | "Timeout")],
|
|
773
|
+
?max_results: ::Integer,
|
|
774
|
+
?next_token: ::String
|
|
775
|
+
) -> _GetScheduledQueryHistoryResponseSuccess
|
|
776
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetScheduledQueryHistoryResponseSuccess
|
|
777
|
+
|
|
695
778
|
interface _GetTransformerResponseSuccess
|
|
696
779
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetTransformerResponse]
|
|
697
780
|
def log_group_identifier: () -> ::String
|
|
@@ -773,6 +856,19 @@ module Aws
|
|
|
773
856
|
) -> _ListLogGroupsForQueryResponseSuccess
|
|
774
857
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLogGroupsForQueryResponseSuccess
|
|
775
858
|
|
|
859
|
+
interface _ListScheduledQueriesResponseSuccess
|
|
860
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListScheduledQueriesResponse]
|
|
861
|
+
def next_token: () -> ::String
|
|
862
|
+
def scheduled_queries: () -> ::Array[Types::ScheduledQuerySummary]
|
|
863
|
+
end
|
|
864
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#list_scheduled_queries-instance_method
|
|
865
|
+
def list_scheduled_queries: (
|
|
866
|
+
?max_results: ::Integer,
|
|
867
|
+
?next_token: ::String,
|
|
868
|
+
?state: ("ENABLED" | "DISABLED")
|
|
869
|
+
) -> _ListScheduledQueriesResponseSuccess
|
|
870
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListScheduledQueriesResponseSuccess
|
|
871
|
+
|
|
776
872
|
interface _ListTagsForResourceResponseSuccess
|
|
777
873
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
|
778
874
|
def tags: () -> ::Hash[::String, ::String]
|
|
@@ -1095,7 +1191,8 @@ module Aws
|
|
|
1095
1191
|
parse_to_ocsf: {
|
|
1096
1192
|
source: ::String?,
|
|
1097
1193
|
event_source: ("CloudTrail" | "Route53Resolver" | "VPCFlow" | "EKSAudit" | "AWSWAF"),
|
|
1098
|
-
ocsf_version: ("V1.1")
|
|
1194
|
+
ocsf_version: ("V1.1" | "V1.5"),
|
|
1195
|
+
mapping_version: ::String?
|
|
1099
1196
|
}?,
|
|
1100
1197
|
parse_postgres: {
|
|
1101
1198
|
source: ::String?
|
|
@@ -1306,7 +1403,8 @@ module Aws
|
|
|
1306
1403
|
parse_to_ocsf: {
|
|
1307
1404
|
source: ::String?,
|
|
1308
1405
|
event_source: ("CloudTrail" | "Route53Resolver" | "VPCFlow" | "EKSAudit" | "AWSWAF"),
|
|
1309
|
-
ocsf_version: ("V1.1")
|
|
1406
|
+
ocsf_version: ("V1.1" | "V1.5"),
|
|
1407
|
+
mapping_version: ::String?
|
|
1310
1408
|
}?,
|
|
1311
1409
|
parse_postgres: {
|
|
1312
1410
|
source: ::String?
|
|
@@ -1415,6 +1513,50 @@ module Aws
|
|
|
1415
1513
|
enabled: bool
|
|
1416
1514
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1417
1515
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
1516
|
+
|
|
1517
|
+
interface _UpdateScheduledQueryResponseSuccess
|
|
1518
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateScheduledQueryResponse]
|
|
1519
|
+
def scheduled_query_arn: () -> ::String
|
|
1520
|
+
def name: () -> ::String
|
|
1521
|
+
def description: () -> ::String
|
|
1522
|
+
def query_language: () -> ("CWLI" | "SQL" | "PPL")
|
|
1523
|
+
def query_string: () -> ::String
|
|
1524
|
+
def log_group_identifiers: () -> ::Array[::String]
|
|
1525
|
+
def schedule_expression: () -> ::String
|
|
1526
|
+
def timezone: () -> ::String
|
|
1527
|
+
def start_time_offset: () -> ::Integer
|
|
1528
|
+
def destination_configuration: () -> Types::DestinationConfiguration
|
|
1529
|
+
def state: () -> ("ENABLED" | "DISABLED")
|
|
1530
|
+
def last_triggered_time: () -> ::Integer
|
|
1531
|
+
def last_execution_status: () -> ("Running" | "InvalidQuery" | "Complete" | "Failed" | "Timeout")
|
|
1532
|
+
def schedule_start_time: () -> ::Integer
|
|
1533
|
+
def schedule_end_time: () -> ::Integer
|
|
1534
|
+
def execution_role_arn: () -> ::String
|
|
1535
|
+
def creation_time: () -> ::Integer
|
|
1536
|
+
def last_updated_time: () -> ::Integer
|
|
1537
|
+
end
|
|
1538
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudWatchLogs/Client.html#update_scheduled_query-instance_method
|
|
1539
|
+
def update_scheduled_query: (
|
|
1540
|
+
identifier: ::String,
|
|
1541
|
+
?description: ::String,
|
|
1542
|
+
query_language: ("CWLI" | "SQL" | "PPL"),
|
|
1543
|
+
query_string: ::String,
|
|
1544
|
+
?log_group_identifiers: Array[::String],
|
|
1545
|
+
schedule_expression: ::String,
|
|
1546
|
+
?timezone: ::String,
|
|
1547
|
+
?start_time_offset: ::Integer,
|
|
1548
|
+
?destination_configuration: {
|
|
1549
|
+
s3_configuration: {
|
|
1550
|
+
destination_identifier: ::String,
|
|
1551
|
+
role_arn: ::String
|
|
1552
|
+
}
|
|
1553
|
+
},
|
|
1554
|
+
?schedule_start_time: ::Integer,
|
|
1555
|
+
?schedule_end_time: ::Integer,
|
|
1556
|
+
execution_role_arn: ::String,
|
|
1557
|
+
?state: ("ENABLED" | "DISABLED")
|
|
1558
|
+
) -> _UpdateScheduledQueryResponseSuccess
|
|
1559
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateScheduledQueryResponseSuccess
|
|
1418
1560
|
end
|
|
1419
1561
|
end
|
|
1420
1562
|
end
|
data/sig/errors.rbs
CHANGED
|
@@ -18,6 +18,8 @@ module Aws
|
|
|
18
18
|
class DataAlreadyAcceptedException < ::Aws::Errors::ServiceError
|
|
19
19
|
def expected_sequence_token: () -> ::String
|
|
20
20
|
end
|
|
21
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
|
22
|
+
end
|
|
21
23
|
class InternalStreamingException < ::Aws::Errors::ServiceError
|
|
22
24
|
def message: () -> ::String
|
|
23
25
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -188,6 +188,30 @@ module Aws::CloudWatchLogs
|
|
|
188
188
|
SENSITIVE: []
|
|
189
189
|
end
|
|
190
190
|
|
|
191
|
+
class CreateScheduledQueryRequest
|
|
192
|
+
attr_accessor name: ::String
|
|
193
|
+
attr_accessor description: ::String
|
|
194
|
+
attr_accessor query_language: ("CWLI" | "SQL" | "PPL")
|
|
195
|
+
attr_accessor query_string: ::String
|
|
196
|
+
attr_accessor log_group_identifiers: ::Array[::String]
|
|
197
|
+
attr_accessor schedule_expression: ::String
|
|
198
|
+
attr_accessor timezone: ::String
|
|
199
|
+
attr_accessor start_time_offset: ::Integer
|
|
200
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
|
201
|
+
attr_accessor schedule_start_time: ::Integer
|
|
202
|
+
attr_accessor schedule_end_time: ::Integer
|
|
203
|
+
attr_accessor execution_role_arn: ::String
|
|
204
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
|
205
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
206
|
+
SENSITIVE: []
|
|
207
|
+
end
|
|
208
|
+
|
|
209
|
+
class CreateScheduledQueryResponse
|
|
210
|
+
attr_accessor scheduled_query_arn: ::String
|
|
211
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
|
212
|
+
SENSITIVE: []
|
|
213
|
+
end
|
|
214
|
+
|
|
191
215
|
class DataAlreadyAcceptedException
|
|
192
216
|
attr_accessor expected_sequence_token: ::String
|
|
193
217
|
SENSITIVE: []
|
|
@@ -306,6 +330,14 @@ module Aws::CloudWatchLogs
|
|
|
306
330
|
SENSITIVE: []
|
|
307
331
|
end
|
|
308
332
|
|
|
333
|
+
class DeleteScheduledQueryRequest
|
|
334
|
+
attr_accessor identifier: ::String
|
|
335
|
+
SENSITIVE: []
|
|
336
|
+
end
|
|
337
|
+
|
|
338
|
+
class DeleteScheduledQueryResponse < Aws::EmptyStructure
|
|
339
|
+
end
|
|
340
|
+
|
|
309
341
|
class DeleteSubscriptionFilterRequest
|
|
310
342
|
attr_accessor log_group_name: ::String
|
|
311
343
|
attr_accessor filter_name: ::String
|
|
@@ -590,6 +622,11 @@ module Aws::CloudWatchLogs
|
|
|
590
622
|
SENSITIVE: []
|
|
591
623
|
end
|
|
592
624
|
|
|
625
|
+
class DestinationConfiguration
|
|
626
|
+
attr_accessor s3_configuration: Types::S3Configuration
|
|
627
|
+
SENSITIVE: []
|
|
628
|
+
end
|
|
629
|
+
|
|
593
630
|
class DisassociateKmsKeyRequest
|
|
594
631
|
attr_accessor log_group_name: ::String
|
|
595
632
|
attr_accessor resource_identifier: ::String
|
|
@@ -824,6 +861,51 @@ module Aws::CloudWatchLogs
|
|
|
824
861
|
SENSITIVE: []
|
|
825
862
|
end
|
|
826
863
|
|
|
864
|
+
class GetScheduledQueryHistoryRequest
|
|
865
|
+
attr_accessor identifier: ::String
|
|
866
|
+
attr_accessor start_time: ::Integer
|
|
867
|
+
attr_accessor end_time: ::Integer
|
|
868
|
+
attr_accessor execution_statuses: ::Array[("Running" | "InvalidQuery" | "Complete" | "Failed" | "Timeout")]
|
|
869
|
+
attr_accessor max_results: ::Integer
|
|
870
|
+
attr_accessor next_token: ::String
|
|
871
|
+
SENSITIVE: []
|
|
872
|
+
end
|
|
873
|
+
|
|
874
|
+
class GetScheduledQueryHistoryResponse
|
|
875
|
+
attr_accessor name: ::String
|
|
876
|
+
attr_accessor scheduled_query_arn: ::String
|
|
877
|
+
attr_accessor trigger_history: ::Array[Types::TriggerHistoryRecord]
|
|
878
|
+
attr_accessor next_token: ::String
|
|
879
|
+
SENSITIVE: []
|
|
880
|
+
end
|
|
881
|
+
|
|
882
|
+
class GetScheduledQueryRequest
|
|
883
|
+
attr_accessor identifier: ::String
|
|
884
|
+
SENSITIVE: []
|
|
885
|
+
end
|
|
886
|
+
|
|
887
|
+
class GetScheduledQueryResponse
|
|
888
|
+
attr_accessor scheduled_query_arn: ::String
|
|
889
|
+
attr_accessor name: ::String
|
|
890
|
+
attr_accessor description: ::String
|
|
891
|
+
attr_accessor query_language: ("CWLI" | "SQL" | "PPL")
|
|
892
|
+
attr_accessor query_string: ::String
|
|
893
|
+
attr_accessor log_group_identifiers: ::Array[::String]
|
|
894
|
+
attr_accessor schedule_expression: ::String
|
|
895
|
+
attr_accessor timezone: ::String
|
|
896
|
+
attr_accessor start_time_offset: ::Integer
|
|
897
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
|
898
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
|
899
|
+
attr_accessor last_triggered_time: ::Integer
|
|
900
|
+
attr_accessor last_execution_status: ("Running" | "InvalidQuery" | "Complete" | "Failed" | "Timeout")
|
|
901
|
+
attr_accessor schedule_start_time: ::Integer
|
|
902
|
+
attr_accessor schedule_end_time: ::Integer
|
|
903
|
+
attr_accessor execution_role_arn: ::String
|
|
904
|
+
attr_accessor creation_time: ::Integer
|
|
905
|
+
attr_accessor last_updated_time: ::Integer
|
|
906
|
+
SENSITIVE: []
|
|
907
|
+
end
|
|
908
|
+
|
|
827
909
|
class GetTransformerRequest
|
|
828
910
|
attr_accessor log_group_identifier: ::String
|
|
829
911
|
SENSITIVE: []
|
|
@@ -876,6 +958,9 @@ module Aws::CloudWatchLogs
|
|
|
876
958
|
SENSITIVE: []
|
|
877
959
|
end
|
|
878
960
|
|
|
961
|
+
class InternalServerException < Aws::EmptyStructure
|
|
962
|
+
end
|
|
963
|
+
|
|
879
964
|
class InternalStreamingException
|
|
880
965
|
attr_accessor message: ::String
|
|
881
966
|
attr_accessor event_type: untyped
|
|
@@ -964,6 +1049,19 @@ module Aws::CloudWatchLogs
|
|
|
964
1049
|
SENSITIVE: []
|
|
965
1050
|
end
|
|
966
1051
|
|
|
1052
|
+
class ListScheduledQueriesRequest
|
|
1053
|
+
attr_accessor max_results: ::Integer
|
|
1054
|
+
attr_accessor next_token: ::String
|
|
1055
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
|
1056
|
+
SENSITIVE: []
|
|
1057
|
+
end
|
|
1058
|
+
|
|
1059
|
+
class ListScheduledQueriesResponse
|
|
1060
|
+
attr_accessor next_token: ::String
|
|
1061
|
+
attr_accessor scheduled_queries: ::Array[Types::ScheduledQuerySummary]
|
|
1062
|
+
SENSITIVE: []
|
|
1063
|
+
end
|
|
1064
|
+
|
|
967
1065
|
class ListTagsForResourceRequest
|
|
968
1066
|
attr_accessor resource_arn: ::String
|
|
969
1067
|
SENSITIVE: []
|
|
@@ -1246,7 +1344,8 @@ module Aws::CloudWatchLogs
|
|
|
1246
1344
|
class ParseToOCSF
|
|
1247
1345
|
attr_accessor source: ::String
|
|
1248
1346
|
attr_accessor event_source: ("CloudTrail" | "Route53Resolver" | "VPCFlow" | "EKSAudit" | "AWSWAF")
|
|
1249
|
-
attr_accessor ocsf_version: ("V1.1")
|
|
1347
|
+
attr_accessor ocsf_version: ("V1.1" | "V1.5")
|
|
1348
|
+
attr_accessor mapping_version: ::String
|
|
1250
1349
|
SENSITIVE: []
|
|
1251
1350
|
end
|
|
1252
1351
|
|
|
@@ -1596,12 +1695,41 @@ module Aws::CloudWatchLogs
|
|
|
1596
1695
|
SENSITIVE: []
|
|
1597
1696
|
end
|
|
1598
1697
|
|
|
1698
|
+
class S3Configuration
|
|
1699
|
+
attr_accessor destination_identifier: ::String
|
|
1700
|
+
attr_accessor role_arn: ::String
|
|
1701
|
+
SENSITIVE: []
|
|
1702
|
+
end
|
|
1703
|
+
|
|
1599
1704
|
class S3DeliveryConfiguration
|
|
1600
1705
|
attr_accessor suffix_path: ::String
|
|
1601
1706
|
attr_accessor enable_hive_compatible_path: bool
|
|
1602
1707
|
SENSITIVE: []
|
|
1603
1708
|
end
|
|
1604
1709
|
|
|
1710
|
+
class ScheduledQueryDestination
|
|
1711
|
+
attr_accessor destination_type: ("S3")
|
|
1712
|
+
attr_accessor destination_identifier: ::String
|
|
1713
|
+
attr_accessor status: ("IN_PROGRESS" | "CLIENT_ERROR" | "FAILED" | "COMPLETE")
|
|
1714
|
+
attr_accessor processed_identifier: ::String
|
|
1715
|
+
attr_accessor error_message: ::String
|
|
1716
|
+
SENSITIVE: []
|
|
1717
|
+
end
|
|
1718
|
+
|
|
1719
|
+
class ScheduledQuerySummary
|
|
1720
|
+
attr_accessor scheduled_query_arn: ::String
|
|
1721
|
+
attr_accessor name: ::String
|
|
1722
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
|
1723
|
+
attr_accessor last_triggered_time: ::Integer
|
|
1724
|
+
attr_accessor last_execution_status: ("Running" | "InvalidQuery" | "Complete" | "Failed" | "Timeout")
|
|
1725
|
+
attr_accessor schedule_expression: ::String
|
|
1726
|
+
attr_accessor timezone: ::String
|
|
1727
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
|
1728
|
+
attr_accessor creation_time: ::Integer
|
|
1729
|
+
attr_accessor last_updated_time: ::Integer
|
|
1730
|
+
SENSITIVE: []
|
|
1731
|
+
end
|
|
1732
|
+
|
|
1605
1733
|
class SearchedLogStream
|
|
1606
1734
|
attr_accessor log_stream_name: ::String
|
|
1607
1735
|
attr_accessor searched_completely: bool
|
|
@@ -1759,6 +1887,15 @@ module Aws::CloudWatchLogs
|
|
|
1759
1887
|
SENSITIVE: []
|
|
1760
1888
|
end
|
|
1761
1889
|
|
|
1890
|
+
class TriggerHistoryRecord
|
|
1891
|
+
attr_accessor query_id: ::String
|
|
1892
|
+
attr_accessor execution_status: ("Running" | "InvalidQuery" | "Complete" | "Failed" | "Timeout")
|
|
1893
|
+
attr_accessor triggered_timestamp: ::Integer
|
|
1894
|
+
attr_accessor error_message: ::String
|
|
1895
|
+
attr_accessor destinations: ::Array[Types::ScheduledQueryDestination]
|
|
1896
|
+
SENSITIVE: []
|
|
1897
|
+
end
|
|
1898
|
+
|
|
1762
1899
|
class TrimString
|
|
1763
1900
|
attr_accessor with_keys: ::Array[::String]
|
|
1764
1901
|
SENSITIVE: []
|
|
@@ -1820,6 +1957,45 @@ module Aws::CloudWatchLogs
|
|
|
1820
1957
|
SENSITIVE: []
|
|
1821
1958
|
end
|
|
1822
1959
|
|
|
1960
|
+
class UpdateScheduledQueryRequest
|
|
1961
|
+
attr_accessor identifier: ::String
|
|
1962
|
+
attr_accessor description: ::String
|
|
1963
|
+
attr_accessor query_language: ("CWLI" | "SQL" | "PPL")
|
|
1964
|
+
attr_accessor query_string: ::String
|
|
1965
|
+
attr_accessor log_group_identifiers: ::Array[::String]
|
|
1966
|
+
attr_accessor schedule_expression: ::String
|
|
1967
|
+
attr_accessor timezone: ::String
|
|
1968
|
+
attr_accessor start_time_offset: ::Integer
|
|
1969
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
|
1970
|
+
attr_accessor schedule_start_time: ::Integer
|
|
1971
|
+
attr_accessor schedule_end_time: ::Integer
|
|
1972
|
+
attr_accessor execution_role_arn: ::String
|
|
1973
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
|
1974
|
+
SENSITIVE: []
|
|
1975
|
+
end
|
|
1976
|
+
|
|
1977
|
+
class UpdateScheduledQueryResponse
|
|
1978
|
+
attr_accessor scheduled_query_arn: ::String
|
|
1979
|
+
attr_accessor name: ::String
|
|
1980
|
+
attr_accessor description: ::String
|
|
1981
|
+
attr_accessor query_language: ("CWLI" | "SQL" | "PPL")
|
|
1982
|
+
attr_accessor query_string: ::String
|
|
1983
|
+
attr_accessor log_group_identifiers: ::Array[::String]
|
|
1984
|
+
attr_accessor schedule_expression: ::String
|
|
1985
|
+
attr_accessor timezone: ::String
|
|
1986
|
+
attr_accessor start_time_offset: ::Integer
|
|
1987
|
+
attr_accessor destination_configuration: Types::DestinationConfiguration
|
|
1988
|
+
attr_accessor state: ("ENABLED" | "DISABLED")
|
|
1989
|
+
attr_accessor last_triggered_time: ::Integer
|
|
1990
|
+
attr_accessor last_execution_status: ("Running" | "InvalidQuery" | "Complete" | "Failed" | "Timeout")
|
|
1991
|
+
attr_accessor schedule_start_time: ::Integer
|
|
1992
|
+
attr_accessor schedule_end_time: ::Integer
|
|
1993
|
+
attr_accessor execution_role_arn: ::String
|
|
1994
|
+
attr_accessor creation_time: ::Integer
|
|
1995
|
+
attr_accessor last_updated_time: ::Integer
|
|
1996
|
+
SENSITIVE: []
|
|
1997
|
+
end
|
|
1998
|
+
|
|
1823
1999
|
class UpperCaseString
|
|
1824
2000
|
attr_accessor with_keys: ::Array[::String]
|
|
1825
2001
|
SENSITIVE: []
|