aws-sdk-cloudwatchlogs 1.147.0 → 1.149.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 +48 -8
- data/lib/aws-sdk-cloudwatchlogs/client_api.rb +53 -0
- data/lib/aws-sdk-cloudwatchlogs/types.rb +161 -4
- data/lib/aws-sdk-cloudwatchlogs.rb +1 -1
- data/sig/client.rbs +9 -2
- data/sig/types.rbs +29 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 80681e00d7e95b853da66652660e18bdadcce3d9068b930f9c90c3231ca56d2f
|
|
4
|
+
data.tar.gz: 7db15f489548e51b14941754caa3149aa66fe2fbe39563a92b2882f5e91b2419
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a8221e03e1ce012dc11f16a16dd76b5e91f4eeb0abf8b0c311803ac8845fa561f2d12a05a1d7b50fedfc5938c9325a8f085abb9f84465b48e6f2da1def4cf5a
|
|
7
|
+
data.tar.gz: a44f1faa8a1eedb2b76614b752a20097129d0d75bd31d6e70650091d2af289716094d5178e5e190ada9c28ac2679d66d79a7c96afe60dd4a8fd804a0a9becfc2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.149.0 (2026-05-04)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adding an additional optional deliverySourceConfiguration field to PutDeliverySource API. This enables customers to pass service-specific configurations through IngestionHub such as tracing enablement or sampling rates that will be propagated to the source resource.
|
|
8
|
+
|
|
9
|
+
1.148.0 (2026-05-01)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for filtering log groups by tags in the ListLogGroups API via the new logGroupTags parameter.
|
|
13
|
+
|
|
4
14
|
1.147.0 (2026-04-27)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.149.0
|
|
@@ -2318,6 +2318,16 @@ module Aws::CloudWatchLogs
|
|
|
2318
2318
|
# resp.configuration_templates[0].allowed_field_delimiters[0] #=> String
|
|
2319
2319
|
# resp.configuration_templates[0].allowed_suffix_path_fields #=> Array
|
|
2320
2320
|
# resp.configuration_templates[0].allowed_suffix_path_fields[0] #=> String
|
|
2321
|
+
# resp.configuration_templates[0].delivery_source_configuration #=> Array
|
|
2322
|
+
# resp.configuration_templates[0].delivery_source_configuration[0].key_name #=> String
|
|
2323
|
+
# resp.configuration_templates[0].delivery_source_configuration[0].value_type #=> String, one of "string", "boolean", "int", "double", "long"
|
|
2324
|
+
# resp.configuration_templates[0].delivery_source_configuration[0].default_value #=> String
|
|
2325
|
+
# resp.configuration_templates[0].delivery_source_configuration[0].supported_values #=> Array
|
|
2326
|
+
# resp.configuration_templates[0].delivery_source_configuration[0].supported_values[0] #=> String
|
|
2327
|
+
# resp.configuration_templates[0].delivery_source_configuration[0].min_value #=> Float
|
|
2328
|
+
# resp.configuration_templates[0].delivery_source_configuration[0].max_value #=> Float
|
|
2329
|
+
# resp.configuration_templates[0].s3_tables_integration.datasource_name #=> String
|
|
2330
|
+
# resp.configuration_templates[0].s3_tables_integration.datasource_type #=> String
|
|
2321
2331
|
# resp.next_token #=> String
|
|
2322
2332
|
#
|
|
2323
2333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeConfigurationTemplates AWS API Documentation
|
|
@@ -2478,6 +2488,10 @@ module Aws::CloudWatchLogs
|
|
|
2478
2488
|
# resp.delivery_sources[0].log_type #=> String
|
|
2479
2489
|
# resp.delivery_sources[0].tags #=> Hash
|
|
2480
2490
|
# resp.delivery_sources[0].tags["TagKey"] #=> String
|
|
2491
|
+
# resp.delivery_sources[0].delivery_source_configuration #=> Hash
|
|
2492
|
+
# resp.delivery_sources[0].delivery_source_configuration["DeliverySourceConfigurationKey"] #=> String
|
|
2493
|
+
# resp.delivery_sources[0].status #=> String, one of "ACTIVE", "INACTIVE"
|
|
2494
|
+
# resp.delivery_sources[0].status_reason #=> String, one of "RESOURCE_DELETED"
|
|
2481
2495
|
# resp.next_token #=> String
|
|
2482
2496
|
#
|
|
2483
2497
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DescribeDeliverySources AWS API Documentation
|
|
@@ -3940,6 +3954,10 @@ module Aws::CloudWatchLogs
|
|
|
3940
3954
|
# resp.delivery_source.log_type #=> String
|
|
3941
3955
|
# resp.delivery_source.tags #=> Hash
|
|
3942
3956
|
# resp.delivery_source.tags["TagKey"] #=> String
|
|
3957
|
+
# resp.delivery_source.delivery_source_configuration #=> Hash
|
|
3958
|
+
# resp.delivery_source.delivery_source_configuration["DeliverySourceConfigurationKey"] #=> String
|
|
3959
|
+
# resp.delivery_source.status #=> String, one of "ACTIVE", "INACTIVE"
|
|
3960
|
+
# resp.delivery_source.status_reason #=> String, one of "RESOURCE_DELETED"
|
|
3943
3961
|
#
|
|
3944
3962
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetDeliverySource AWS API Documentation
|
|
3945
3963
|
#
|
|
@@ -5258,12 +5276,10 @@ module Aws::CloudWatchLogs
|
|
|
5258
5276
|
# observability to set up monitoring accounts and source accounts, see [
|
|
5259
5277
|
# CloudWatch cross-account observability][1].
|
|
5260
5278
|
#
|
|
5261
|
-
# You can optionally filter the
|
|
5262
|
-
#
|
|
5263
|
-
#
|
|
5264
|
-
#
|
|
5265
|
-
# parameter to filter log groups by data source types, and by using the
|
|
5266
|
-
# fieldIndexNames parameter to filter by specific field index names.
|
|
5279
|
+
# You can optionally filter the results by log group class, log group
|
|
5280
|
+
# name pattern, field indexes, data sources, field index names, or log
|
|
5281
|
+
# group tags. If you specify more than one filter type, the results
|
|
5282
|
+
# include log groups that satisfy all filters.
|
|
5267
5283
|
#
|
|
5268
5284
|
# This operation is paginated. By default, your first use of this
|
|
5269
5285
|
# operation returns 50 results, and includes a token to use in a
|
|
@@ -5336,6 +5352,10 @@ module Aws::CloudWatchLogs
|
|
|
5336
5352
|
# are returned. You can specify 1 to 20 field index names, each with 1
|
|
5337
5353
|
# to 512 characters.
|
|
5338
5354
|
#
|
|
5355
|
+
# @option params [Array<Types::TagFilter>] :log_group_tags
|
|
5356
|
+
# An array of tag filters to return only log groups that have specific
|
|
5357
|
+
# tags. Multiple filters are combined with AND logic.
|
|
5358
|
+
#
|
|
5339
5359
|
# @return [Types::ListLogGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5340
5360
|
#
|
|
5341
5361
|
# * {Types::ListLogGroupsResponse#log_groups #log_groups} => Array<Types::LogGroupSummary>
|
|
@@ -5357,6 +5377,12 @@ module Aws::CloudWatchLogs
|
|
|
5357
5377
|
# },
|
|
5358
5378
|
# ],
|
|
5359
5379
|
# field_index_names: ["FieldIndexName"],
|
|
5380
|
+
# log_group_tags: [
|
|
5381
|
+
# {
|
|
5382
|
+
# key: "TagFilterKey", # required
|
|
5383
|
+
# values: ["TagFilterValue"],
|
|
5384
|
+
# },
|
|
5385
|
+
# ],
|
|
5360
5386
|
# })
|
|
5361
5387
|
#
|
|
5362
5388
|
# @example Response structure
|
|
@@ -6685,6 +6711,11 @@ module Aws::CloudWatchLogs
|
|
|
6685
6711
|
#
|
|
6686
6712
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
|
6687
6713
|
#
|
|
6714
|
+
# @option params [Hash<String,String>] :delivery_source_configuration
|
|
6715
|
+
# A map of key-value pairs to configure the delivery source. Both keys
|
|
6716
|
+
# and values must be between 1 and 255 characters in length. For
|
|
6717
|
+
# example, `{"samplingRate": "50"}`.
|
|
6718
|
+
#
|
|
6688
6719
|
# @return [Types::PutDeliverySourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6689
6720
|
#
|
|
6690
6721
|
# * {Types::PutDeliverySourceResponse#delivery_source #delivery_source} => Types::DeliverySource
|
|
@@ -6698,6 +6729,9 @@ module Aws::CloudWatchLogs
|
|
|
6698
6729
|
# tags: {
|
|
6699
6730
|
# "TagKey" => "TagValue",
|
|
6700
6731
|
# },
|
|
6732
|
+
# delivery_source_configuration: {
|
|
6733
|
+
# "DeliverySourceConfigurationKey" => "DeliverySourceConfigurationValue",
|
|
6734
|
+
# },
|
|
6701
6735
|
# })
|
|
6702
6736
|
#
|
|
6703
6737
|
# @example Response structure
|
|
@@ -6710,6 +6744,10 @@ module Aws::CloudWatchLogs
|
|
|
6710
6744
|
# resp.delivery_source.log_type #=> String
|
|
6711
6745
|
# resp.delivery_source.tags #=> Hash
|
|
6712
6746
|
# resp.delivery_source.tags["TagKey"] #=> String
|
|
6747
|
+
# resp.delivery_source.delivery_source_configuration #=> Hash
|
|
6748
|
+
# resp.delivery_source.delivery_source_configuration["DeliverySourceConfigurationKey"] #=> String
|
|
6749
|
+
# resp.delivery_source.status #=> String, one of "ACTIVE", "INACTIVE"
|
|
6750
|
+
# resp.delivery_source.status_reason #=> String, one of "RESOURCE_DELETED"
|
|
6713
6751
|
#
|
|
6714
6752
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDeliverySource AWS API Documentation
|
|
6715
6753
|
#
|
|
@@ -8291,7 +8329,9 @@ module Aws::CloudWatchLogs
|
|
|
8291
8329
|
# * Or the `queryString` must include a `SOURCE` command to select log
|
|
8292
8330
|
# groups for the query. The `SOURCE` command can select log groups
|
|
8293
8331
|
# based on log group name prefix, account ID, and log class, or select
|
|
8294
|
-
# data sources using dataSource syntax in LogsQL, PPL, and SQL.
|
|
8332
|
+
# data sources using dataSource syntax in LogsQL, PPL, and SQL. In
|
|
8333
|
+
# LogsQL, the `SOURCE` command also supports filtering by log group
|
|
8334
|
+
# tags.
|
|
8295
8335
|
#
|
|
8296
8336
|
# For more information about the `SOURCE` command, see [SOURCE][3].
|
|
8297
8337
|
#
|
|
@@ -9250,7 +9290,7 @@ module Aws::CloudWatchLogs
|
|
|
9250
9290
|
tracer: tracer
|
|
9251
9291
|
)
|
|
9252
9292
|
context[:gem_name] = 'aws-sdk-cloudwatchlogs'
|
|
9253
|
-
context[:gem_version] = '1.
|
|
9293
|
+
context[:gem_version] = '1.149.0'
|
|
9254
9294
|
Seahorse::Client::Request.new(handlers, context)
|
|
9255
9295
|
end
|
|
9256
9296
|
|
|
@@ -133,7 +133,18 @@ module Aws::CloudWatchLogs
|
|
|
133
133
|
DeliveryDestinations = Shapes::ListShape.new(name: 'DeliveryDestinations')
|
|
134
134
|
DeliveryId = Shapes::StringShape.new(name: 'DeliveryId')
|
|
135
135
|
DeliverySource = Shapes::StructureShape.new(name: 'DeliverySource')
|
|
136
|
+
DeliverySourceConfiguration = Shapes::MapShape.new(name: 'DeliverySourceConfiguration')
|
|
137
|
+
DeliverySourceConfigurationKey = Shapes::StringShape.new(name: 'DeliverySourceConfigurationKey')
|
|
138
|
+
DeliverySourceConfigurationNumericValue = Shapes::FloatShape.new(name: 'DeliverySourceConfigurationNumericValue')
|
|
139
|
+
DeliverySourceConfigurationSchema = Shapes::StructureShape.new(name: 'DeliverySourceConfigurationSchema')
|
|
140
|
+
DeliverySourceConfigurationSchemaField = Shapes::StringShape.new(name: 'DeliverySourceConfigurationSchemaField')
|
|
141
|
+
DeliverySourceConfigurationSchemaValueType = Shapes::StringShape.new(name: 'DeliverySourceConfigurationSchemaValueType')
|
|
142
|
+
DeliverySourceConfigurationSchemas = Shapes::ListShape.new(name: 'DeliverySourceConfigurationSchemas')
|
|
143
|
+
DeliverySourceConfigurationSupportedValues = Shapes::ListShape.new(name: 'DeliverySourceConfigurationSupportedValues')
|
|
144
|
+
DeliverySourceConfigurationValue = Shapes::StringShape.new(name: 'DeliverySourceConfigurationValue')
|
|
136
145
|
DeliverySourceName = Shapes::StringShape.new(name: 'DeliverySourceName')
|
|
146
|
+
DeliverySourceStatus = Shapes::StringShape.new(name: 'DeliverySourceStatus')
|
|
147
|
+
DeliverySourceStatusReason = Shapes::StringShape.new(name: 'DeliverySourceStatusReason')
|
|
137
148
|
DeliverySources = Shapes::ListShape.new(name: 'DeliverySources')
|
|
138
149
|
DeliverySuffixPath = Shapes::StringShape.new(name: 'DeliverySuffixPath')
|
|
139
150
|
Descending = Shapes::BooleanShape.new(name: 'Descending')
|
|
@@ -560,6 +571,9 @@ module Aws::CloudWatchLogs
|
|
|
560
571
|
S3TableIntegrationSourceStatus = Shapes::StringShape.new(name: 'S3TableIntegrationSourceStatus')
|
|
561
572
|
S3TableIntegrationSourceStatusReason = Shapes::StringShape.new(name: 'S3TableIntegrationSourceStatusReason')
|
|
562
573
|
S3TableIntegrationSources = Shapes::ListShape.new(name: 'S3TableIntegrationSources')
|
|
574
|
+
S3TablesDatasourceName = Shapes::StringShape.new(name: 'S3TablesDatasourceName')
|
|
575
|
+
S3TablesDatasourceType = Shapes::StringShape.new(name: 'S3TablesDatasourceType')
|
|
576
|
+
S3TablesIntegration = Shapes::StructureShape.new(name: 'S3TablesIntegration')
|
|
563
577
|
S3Uri = Shapes::StringShape.new(name: 'S3Uri')
|
|
564
578
|
ScheduleExpression = Shapes::StringShape.new(name: 'ScheduleExpression')
|
|
565
579
|
ScheduleTimezone = Shapes::StringShape.new(name: 'ScheduleTimezone')
|
|
@@ -618,6 +632,11 @@ module Aws::CloudWatchLogs
|
|
|
618
632
|
SystemField = Shapes::StringShape.new(name: 'SystemField')
|
|
619
633
|
TableBody = Shapes::StringShape.new(name: 'TableBody')
|
|
620
634
|
TableFields = Shapes::ListShape.new(name: 'TableFields')
|
|
635
|
+
TagFilter = Shapes::StructureShape.new(name: 'TagFilter')
|
|
636
|
+
TagFilterKey = Shapes::StringShape.new(name: 'TagFilterKey')
|
|
637
|
+
TagFilterValue = Shapes::StringShape.new(name: 'TagFilterValue')
|
|
638
|
+
TagFilterValues = Shapes::ListShape.new(name: 'TagFilterValues')
|
|
639
|
+
TagFilters = Shapes::ListShape.new(name: 'TagFilters')
|
|
621
640
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
|
622
641
|
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
|
623
642
|
TagList = Shapes::ListShape.new(name: 'TagList')
|
|
@@ -789,6 +808,8 @@ module Aws::CloudWatchLogs
|
|
|
789
808
|
ConfigurationTemplate.add_member(:allowed_action_for_allow_vended_logs_delivery_for_resource, Shapes::ShapeRef.new(shape: AllowedActionForAllowVendedLogsDeliveryForResource, location_name: "allowedActionForAllowVendedLogsDeliveryForResource"))
|
|
790
809
|
ConfigurationTemplate.add_member(:allowed_field_delimiters, Shapes::ShapeRef.new(shape: AllowedFieldDelimiters, location_name: "allowedFieldDelimiters"))
|
|
791
810
|
ConfigurationTemplate.add_member(:allowed_suffix_path_fields, Shapes::ShapeRef.new(shape: RecordFields, location_name: "allowedSuffixPathFields"))
|
|
811
|
+
ConfigurationTemplate.add_member(:delivery_source_configuration, Shapes::ShapeRef.new(shape: DeliverySourceConfigurationSchemas, location_name: "deliverySourceConfiguration"))
|
|
812
|
+
ConfigurationTemplate.add_member(:s3_tables_integration, Shapes::ShapeRef.new(shape: S3TablesIntegration, location_name: "s3TablesIntegration"))
|
|
792
813
|
ConfigurationTemplate.struct_class = Types::ConfigurationTemplate
|
|
793
814
|
|
|
794
815
|
ConfigurationTemplateDeliveryConfigValues.add_member(:record_fields, Shapes::ShapeRef.new(shape: RecordFields, location_name: "recordFields"))
|
|
@@ -1036,8 +1057,26 @@ module Aws::CloudWatchLogs
|
|
|
1036
1057
|
DeliverySource.add_member(:service, Shapes::ShapeRef.new(shape: Service, location_name: "service"))
|
|
1037
1058
|
DeliverySource.add_member(:log_type, Shapes::ShapeRef.new(shape: LogType, location_name: "logType"))
|
|
1038
1059
|
DeliverySource.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
1060
|
+
DeliverySource.add_member(:delivery_source_configuration, Shapes::ShapeRef.new(shape: DeliverySourceConfiguration, location_name: "deliverySourceConfiguration"))
|
|
1061
|
+
DeliverySource.add_member(:status, Shapes::ShapeRef.new(shape: DeliverySourceStatus, location_name: "status"))
|
|
1062
|
+
DeliverySource.add_member(:status_reason, Shapes::ShapeRef.new(shape: DeliverySourceStatusReason, location_name: "statusReason"))
|
|
1039
1063
|
DeliverySource.struct_class = Types::DeliverySource
|
|
1040
1064
|
|
|
1065
|
+
DeliverySourceConfiguration.key = Shapes::ShapeRef.new(shape: DeliverySourceConfigurationKey)
|
|
1066
|
+
DeliverySourceConfiguration.value = Shapes::ShapeRef.new(shape: DeliverySourceConfigurationValue)
|
|
1067
|
+
|
|
1068
|
+
DeliverySourceConfigurationSchema.add_member(:key_name, Shapes::ShapeRef.new(shape: DeliverySourceConfigurationSchemaField, required: true, location_name: "keyName"))
|
|
1069
|
+
DeliverySourceConfigurationSchema.add_member(:value_type, Shapes::ShapeRef.new(shape: DeliverySourceConfigurationSchemaValueType, required: true, location_name: "valueType"))
|
|
1070
|
+
DeliverySourceConfigurationSchema.add_member(:default_value, Shapes::ShapeRef.new(shape: DeliverySourceConfigurationSchemaField, required: true, location_name: "defaultValue"))
|
|
1071
|
+
DeliverySourceConfigurationSchema.add_member(:supported_values, Shapes::ShapeRef.new(shape: DeliverySourceConfigurationSupportedValues, location_name: "supportedValues"))
|
|
1072
|
+
DeliverySourceConfigurationSchema.add_member(:min_value, Shapes::ShapeRef.new(shape: DeliverySourceConfigurationNumericValue, location_name: "minValue"))
|
|
1073
|
+
DeliverySourceConfigurationSchema.add_member(:max_value, Shapes::ShapeRef.new(shape: DeliverySourceConfigurationNumericValue, location_name: "maxValue"))
|
|
1074
|
+
DeliverySourceConfigurationSchema.struct_class = Types::DeliverySourceConfigurationSchema
|
|
1075
|
+
|
|
1076
|
+
DeliverySourceConfigurationSchemas.member = Shapes::ShapeRef.new(shape: DeliverySourceConfigurationSchema)
|
|
1077
|
+
|
|
1078
|
+
DeliverySourceConfigurationSupportedValues.member = Shapes::ShapeRef.new(shape: DeliverySourceConfigurationSchemaField)
|
|
1079
|
+
|
|
1041
1080
|
DeliverySources.member = Shapes::ShapeRef.new(shape: DeliverySource)
|
|
1042
1081
|
|
|
1043
1082
|
DescribeAccountPoliciesRequest.add_member(:policy_type, Shapes::ShapeRef.new(shape: PolicyType, required: true, location_name: "policyType"))
|
|
@@ -1669,6 +1708,7 @@ module Aws::CloudWatchLogs
|
|
|
1669
1708
|
ListLogGroupsRequest.add_member(:limit, Shapes::ShapeRef.new(shape: ListLimit, location_name: "limit"))
|
|
1670
1709
|
ListLogGroupsRequest.add_member(:data_sources, Shapes::ShapeRef.new(shape: DataSourceFilters, location_name: "dataSources"))
|
|
1671
1710
|
ListLogGroupsRequest.add_member(:field_index_names, Shapes::ShapeRef.new(shape: FieldIndexNames, location_name: "fieldIndexNames"))
|
|
1711
|
+
ListLogGroupsRequest.add_member(:log_group_tags, Shapes::ShapeRef.new(shape: TagFilters, location_name: "logGroupTags"))
|
|
1672
1712
|
ListLogGroupsRequest.struct_class = Types::ListLogGroupsRequest
|
|
1673
1713
|
|
|
1674
1714
|
ListLogGroupsResponse.add_member(:log_groups, Shapes::ShapeRef.new(shape: LogGroupSummaries, location_name: "logGroups"))
|
|
@@ -2052,6 +2092,7 @@ module Aws::CloudWatchLogs
|
|
|
2052
2092
|
PutDeliverySourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "resourceArn"))
|
|
2053
2093
|
PutDeliverySourceRequest.add_member(:log_type, Shapes::ShapeRef.new(shape: LogType, required: true, location_name: "logType"))
|
|
2054
2094
|
PutDeliverySourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
2095
|
+
PutDeliverySourceRequest.add_member(:delivery_source_configuration, Shapes::ShapeRef.new(shape: DeliverySourceConfiguration, location_name: "deliverySourceConfiguration"))
|
|
2055
2096
|
PutDeliverySourceRequest.struct_class = Types::PutDeliverySourceRequest
|
|
2056
2097
|
|
|
2057
2098
|
PutDeliverySourceResponse.add_member(:delivery_source, Shapes::ShapeRef.new(shape: DeliverySource, location_name: "deliverySource"))
|
|
@@ -2276,6 +2317,10 @@ module Aws::CloudWatchLogs
|
|
|
2276
2317
|
|
|
2277
2318
|
S3TableIntegrationSources.member = Shapes::ShapeRef.new(shape: S3TableIntegrationSource)
|
|
2278
2319
|
|
|
2320
|
+
S3TablesIntegration.add_member(:datasource_name, Shapes::ShapeRef.new(shape: S3TablesDatasourceName, location_name: "datasourceName"))
|
|
2321
|
+
S3TablesIntegration.add_member(:datasource_type, Shapes::ShapeRef.new(shape: S3TablesDatasourceType, location_name: "datasourceType"))
|
|
2322
|
+
S3TablesIntegration.struct_class = Types::S3TablesIntegration
|
|
2323
|
+
|
|
2279
2324
|
ScheduledQueryDestination.add_member(:destination_type, Shapes::ShapeRef.new(shape: ScheduledQueryDestinationType, location_name: "destinationType"))
|
|
2280
2325
|
ScheduledQueryDestination.add_member(:destination_identifier, Shapes::ShapeRef.new(shape: String, location_name: "destinationIdentifier"))
|
|
2281
2326
|
ScheduledQueryDestination.add_member(:status, Shapes::ShapeRef.new(shape: ActionStatus, location_name: "status"))
|
|
@@ -2392,6 +2437,14 @@ module Aws::CloudWatchLogs
|
|
|
2392
2437
|
|
|
2393
2438
|
TableFields.member = Shapes::ShapeRef.new(shape: String)
|
|
2394
2439
|
|
|
2440
|
+
TagFilter.add_member(:key, Shapes::ShapeRef.new(shape: TagFilterKey, required: true, location_name: "key"))
|
|
2441
|
+
TagFilter.add_member(:values, Shapes::ShapeRef.new(shape: TagFilterValues, location_name: "values"))
|
|
2442
|
+
TagFilter.struct_class = Types::TagFilter
|
|
2443
|
+
|
|
2444
|
+
TagFilterValues.member = Shapes::ShapeRef.new(shape: TagFilterValue)
|
|
2445
|
+
|
|
2446
|
+
TagFilters.member = Shapes::ShapeRef.new(shape: TagFilter)
|
|
2447
|
+
|
|
2395
2448
|
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
|
2396
2449
|
|
|
2397
2450
|
TagList.member = Shapes::ShapeRef.new(shape: TagKey)
|
|
@@ -640,6 +640,22 @@ module Aws::CloudWatchLogs
|
|
|
640
640
|
# delivery that delivers to an S3 bucket.
|
|
641
641
|
# @return [Array<String>]
|
|
642
642
|
#
|
|
643
|
+
# @!attribute [rw] delivery_source_configuration
|
|
644
|
+
# The schema of the delivery source configuration that is available
|
|
645
|
+
# for this log type. Each element describes a configuration that can
|
|
646
|
+
# be set when calling [PutDeliverySource][1], including the
|
|
647
|
+
# configuration name, type, and default value.
|
|
648
|
+
#
|
|
649
|
+
#
|
|
650
|
+
#
|
|
651
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutDeliverySource.html
|
|
652
|
+
# @return [Array<Types::DeliverySourceConfigurationSchema>]
|
|
653
|
+
#
|
|
654
|
+
# @!attribute [rw] s3_tables_integration
|
|
655
|
+
# The S3 Tables integration configuration for this configuration
|
|
656
|
+
# template, including the datasource name and type.
|
|
657
|
+
# @return [Types::S3TablesIntegration]
|
|
658
|
+
#
|
|
643
659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ConfigurationTemplate AWS API Documentation
|
|
644
660
|
#
|
|
645
661
|
class ConfigurationTemplate < Struct.new(
|
|
@@ -652,7 +668,9 @@ module Aws::CloudWatchLogs
|
|
|
652
668
|
:allowed_output_formats,
|
|
653
669
|
:allowed_action_for_allow_vended_logs_delivery_for_resource,
|
|
654
670
|
:allowed_field_delimiters,
|
|
655
|
-
:allowed_suffix_path_fields
|
|
671
|
+
:allowed_suffix_path_fields,
|
|
672
|
+
:delivery_source_configuration,
|
|
673
|
+
:s3_tables_integration)
|
|
656
674
|
SENSITIVE = []
|
|
657
675
|
include Aws::Structure
|
|
658
676
|
end
|
|
@@ -2017,6 +2035,23 @@ module Aws::CloudWatchLogs
|
|
|
2017
2035
|
# The tags that have been assigned to this delivery source.
|
|
2018
2036
|
# @return [Hash<String,String>]
|
|
2019
2037
|
#
|
|
2038
|
+
# @!attribute [rw] delivery_source_configuration
|
|
2039
|
+
# The map of key-value pairs that configure the delivery source.
|
|
2040
|
+
# @return [Hash<String,String>]
|
|
2041
|
+
#
|
|
2042
|
+
# @!attribute [rw] status
|
|
2043
|
+
# The status of the delivery source. A delivery source can have the
|
|
2044
|
+
# status `ACTIVE` or `INACTIVE`. Note: This value is defined for
|
|
2045
|
+
# selective log types.
|
|
2046
|
+
# @return [String]
|
|
2047
|
+
#
|
|
2048
|
+
# @!attribute [rw] status_reason
|
|
2049
|
+
# The reason for the status of the delivery source. A status reason of
|
|
2050
|
+
# `RESOURCE_DELETED` indicates that the resource associated with the
|
|
2051
|
+
# delivery source has been deleted. Note: This value is defined for
|
|
2052
|
+
# selective log types.
|
|
2053
|
+
# @return [String]
|
|
2054
|
+
#
|
|
2020
2055
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeliverySource AWS API Documentation
|
|
2021
2056
|
#
|
|
2022
2057
|
class DeliverySource < Struct.new(
|
|
@@ -2025,7 +2060,60 @@ module Aws::CloudWatchLogs
|
|
|
2025
2060
|
:resource_arns,
|
|
2026
2061
|
:service,
|
|
2027
2062
|
:log_type,
|
|
2028
|
-
:tags
|
|
2063
|
+
:tags,
|
|
2064
|
+
:delivery_source_configuration,
|
|
2065
|
+
:status,
|
|
2066
|
+
:status_reason)
|
|
2067
|
+
SENSITIVE = []
|
|
2068
|
+
include Aws::Structure
|
|
2069
|
+
end
|
|
2070
|
+
|
|
2071
|
+
# A structure that describes a single configuration for a log type,
|
|
2072
|
+
# including its name, value type, default value, and the range of
|
|
2073
|
+
# supported values.
|
|
2074
|
+
#
|
|
2075
|
+
# @!attribute [rw] key_name
|
|
2076
|
+
# The name of the configuration.
|
|
2077
|
+
# @return [String]
|
|
2078
|
+
#
|
|
2079
|
+
# @!attribute [rw] value_type
|
|
2080
|
+
# The data type of the configuration value. Valid values are `string`,
|
|
2081
|
+
# `boolean`, `int`, `double`, and `long`.
|
|
2082
|
+
# @return [String]
|
|
2083
|
+
#
|
|
2084
|
+
# @!attribute [rw] default_value
|
|
2085
|
+
# The default value of the configuration that is used when a value is
|
|
2086
|
+
# not specified in a [PutDeliverySource][1] request.
|
|
2087
|
+
#
|
|
2088
|
+
#
|
|
2089
|
+
#
|
|
2090
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutDeliverySource.html
|
|
2091
|
+
# @return [String]
|
|
2092
|
+
#
|
|
2093
|
+
# @!attribute [rw] supported_values
|
|
2094
|
+
# The list of allowed values for the configuration. Empty for
|
|
2095
|
+
# free-form configuration.
|
|
2096
|
+
# @return [Array<String>]
|
|
2097
|
+
#
|
|
2098
|
+
# @!attribute [rw] min_value
|
|
2099
|
+
# The minimum numeric value allowed for the configuration. This
|
|
2100
|
+
# applies only when the `valueType` is a numeric type.
|
|
2101
|
+
# @return [Float]
|
|
2102
|
+
#
|
|
2103
|
+
# @!attribute [rw] max_value
|
|
2104
|
+
# The maximum numeric value allowed for the configuration. This
|
|
2105
|
+
# applies only when the `valueType` is a numeric type.
|
|
2106
|
+
# @return [Float]
|
|
2107
|
+
#
|
|
2108
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeliverySourceConfigurationSchema AWS API Documentation
|
|
2109
|
+
#
|
|
2110
|
+
class DeliverySourceConfigurationSchema < Struct.new(
|
|
2111
|
+
:key_name,
|
|
2112
|
+
:value_type,
|
|
2113
|
+
:default_value,
|
|
2114
|
+
:supported_values,
|
|
2115
|
+
:min_value,
|
|
2116
|
+
:max_value)
|
|
2029
2117
|
SENSITIVE = []
|
|
2030
2118
|
include Aws::Structure
|
|
2031
2119
|
end
|
|
@@ -5199,6 +5287,11 @@ module Aws::CloudWatchLogs
|
|
|
5199
5287
|
# names, each with 1 to 512 characters.
|
|
5200
5288
|
# @return [Array<String>]
|
|
5201
5289
|
#
|
|
5290
|
+
# @!attribute [rw] log_group_tags
|
|
5291
|
+
# An array of tag filters to return only log groups that have specific
|
|
5292
|
+
# tags. Multiple filters are combined with AND logic.
|
|
5293
|
+
# @return [Array<Types::TagFilter>]
|
|
5294
|
+
#
|
|
5202
5295
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/ListLogGroupsRequest AWS API Documentation
|
|
5203
5296
|
#
|
|
5204
5297
|
class ListLogGroupsRequest < Struct.new(
|
|
@@ -5209,7 +5302,8 @@ module Aws::CloudWatchLogs
|
|
|
5209
5302
|
:next_token,
|
|
5210
5303
|
:limit,
|
|
5211
5304
|
:data_sources,
|
|
5212
|
-
:field_index_names
|
|
5305
|
+
:field_index_names,
|
|
5306
|
+
:log_group_tags)
|
|
5213
5307
|
SENSITIVE = []
|
|
5214
5308
|
include Aws::Structure
|
|
5215
5309
|
end
|
|
@@ -7834,13 +7928,20 @@ module Aws::CloudWatchLogs
|
|
|
7834
7928
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
|
7835
7929
|
# @return [Hash<String,String>]
|
|
7836
7930
|
#
|
|
7931
|
+
# @!attribute [rw] delivery_source_configuration
|
|
7932
|
+
# A map of key-value pairs to configure the delivery source. Both keys
|
|
7933
|
+
# and values must be between 1 and 255 characters in length. For
|
|
7934
|
+
# example, `{"samplingRate": "50"}`.
|
|
7935
|
+
# @return [Hash<String,String>]
|
|
7936
|
+
#
|
|
7837
7937
|
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/PutDeliverySourceRequest AWS API Documentation
|
|
7838
7938
|
#
|
|
7839
7939
|
class PutDeliverySourceRequest < Struct.new(
|
|
7840
7940
|
:name,
|
|
7841
7941
|
:resource_arn,
|
|
7842
7942
|
:log_type,
|
|
7843
|
-
:tags
|
|
7943
|
+
:tags,
|
|
7944
|
+
:delivery_source_configuration)
|
|
7844
7945
|
SENSITIVE = []
|
|
7845
7946
|
include Aws::Structure
|
|
7846
7947
|
end
|
|
@@ -9139,6 +9240,26 @@ module Aws::CloudWatchLogs
|
|
|
9139
9240
|
include Aws::Structure
|
|
9140
9241
|
end
|
|
9141
9242
|
|
|
9243
|
+
# Contains information about the S3 Tables integration configuration for
|
|
9244
|
+
# a configuration template.
|
|
9245
|
+
#
|
|
9246
|
+
# @!attribute [rw] datasource_name
|
|
9247
|
+
# The name of the S3 Tables datasource.
|
|
9248
|
+
# @return [String]
|
|
9249
|
+
#
|
|
9250
|
+
# @!attribute [rw] datasource_type
|
|
9251
|
+
# The type of the S3 Tables datasource.
|
|
9252
|
+
# @return [String]
|
|
9253
|
+
#
|
|
9254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/S3TablesIntegration AWS API Documentation
|
|
9255
|
+
#
|
|
9256
|
+
class S3TablesIntegration < Struct.new(
|
|
9257
|
+
:datasource_name,
|
|
9258
|
+
:datasource_type)
|
|
9259
|
+
SENSITIVE = []
|
|
9260
|
+
include Aws::Structure
|
|
9261
|
+
end
|
|
9262
|
+
|
|
9142
9263
|
# Information about a destination where scheduled query results are
|
|
9143
9264
|
# processed, including processing status and any error messages.
|
|
9144
9265
|
#
|
|
@@ -9717,6 +9838,42 @@ module Aws::CloudWatchLogs
|
|
|
9717
9838
|
include Aws::Structure
|
|
9718
9839
|
end
|
|
9719
9840
|
|
|
9841
|
+
# A tag filter that specifies a tag key and optional tag values for
|
|
9842
|
+
# filtering log groups by tags.
|
|
9843
|
+
#
|
|
9844
|
+
# @!attribute [rw] key
|
|
9845
|
+
# The tag key to filter on.
|
|
9846
|
+
# @return [String]
|
|
9847
|
+
#
|
|
9848
|
+
# @!attribute [rw] values
|
|
9849
|
+
# An optional list of tag values to filter on.
|
|
9850
|
+
#
|
|
9851
|
+
# * If you specify a filter that contains more than one value for a
|
|
9852
|
+
# key, the response returns log groups that match any of the
|
|
9853
|
+
# specified values for that key.
|
|
9854
|
+
#
|
|
9855
|
+
# * If you don't specify values, the response returns all log groups
|
|
9856
|
+
# that are tagged with that key, with any or no value.
|
|
9857
|
+
#
|
|
9858
|
+
# * Use `*` for wildcard matching. For example, `prod*` matches values
|
|
9859
|
+
# that start with `prod`.
|
|
9860
|
+
#
|
|
9861
|
+
# * Use `!` as a prefix for negation. For example, `!prod` matches
|
|
9862
|
+
# values that are not `prod`.
|
|
9863
|
+
#
|
|
9864
|
+
# * Exact matching and negation are case-sensitive. Wildcard matching
|
|
9865
|
+
# is case-insensitive.
|
|
9866
|
+
# @return [Array<String>]
|
|
9867
|
+
#
|
|
9868
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/TagFilter AWS API Documentation
|
|
9869
|
+
#
|
|
9870
|
+
class TagFilter < Struct.new(
|
|
9871
|
+
:key,
|
|
9872
|
+
:values)
|
|
9873
|
+
SENSITIVE = []
|
|
9874
|
+
include Aws::Structure
|
|
9875
|
+
end
|
|
9876
|
+
|
|
9720
9877
|
# @!attribute [rw] log_group_name
|
|
9721
9878
|
# The name of the log group.
|
|
9722
9879
|
# @return [String]
|
data/sig/client.rbs
CHANGED
|
@@ -1022,7 +1022,13 @@ module Aws
|
|
|
1022
1022
|
type: ::String?
|
|
1023
1023
|
},
|
|
1024
1024
|
],
|
|
1025
|
-
?field_index_names: Array[::String]
|
|
1025
|
+
?field_index_names: Array[::String],
|
|
1026
|
+
?log_group_tags: Array[
|
|
1027
|
+
{
|
|
1028
|
+
key: ::String,
|
|
1029
|
+
values: Array[::String]?
|
|
1030
|
+
},
|
|
1031
|
+
]
|
|
1026
1032
|
) -> _ListLogGroupsResponseSuccess
|
|
1027
1033
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLogGroupsResponseSuccess
|
|
1028
1034
|
|
|
@@ -1155,7 +1161,8 @@ module Aws
|
|
|
1155
1161
|
name: ::String,
|
|
1156
1162
|
resource_arn: ::String,
|
|
1157
1163
|
log_type: ::String,
|
|
1158
|
-
?tags: Hash[::String, ::String]
|
|
1164
|
+
?tags: Hash[::String, ::String],
|
|
1165
|
+
?delivery_source_configuration: Hash[::String, ::String]
|
|
1159
1166
|
) -> _PutDeliverySourceResponseSuccess
|
|
1160
1167
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDeliverySourceResponseSuccess
|
|
1161
1168
|
|
data/sig/types.rbs
CHANGED
|
@@ -134,6 +134,8 @@ module Aws::CloudWatchLogs
|
|
|
134
134
|
attr_accessor allowed_action_for_allow_vended_logs_delivery_for_resource: ::String
|
|
135
135
|
attr_accessor allowed_field_delimiters: ::Array[::String]
|
|
136
136
|
attr_accessor allowed_suffix_path_fields: ::Array[::String]
|
|
137
|
+
attr_accessor delivery_source_configuration: ::Array[Types::DeliverySourceConfigurationSchema]
|
|
138
|
+
attr_accessor s3_tables_integration: Types::S3TablesIntegration
|
|
137
139
|
SENSITIVE: []
|
|
138
140
|
end
|
|
139
141
|
|
|
@@ -463,6 +465,19 @@ module Aws::CloudWatchLogs
|
|
|
463
465
|
attr_accessor service: ::String
|
|
464
466
|
attr_accessor log_type: ::String
|
|
465
467
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
468
|
+
attr_accessor delivery_source_configuration: ::Hash[::String, ::String]
|
|
469
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
|
470
|
+
attr_accessor status_reason: ("RESOURCE_DELETED")
|
|
471
|
+
SENSITIVE: []
|
|
472
|
+
end
|
|
473
|
+
|
|
474
|
+
class DeliverySourceConfigurationSchema
|
|
475
|
+
attr_accessor key_name: ::String
|
|
476
|
+
attr_accessor value_type: ("string" | "boolean" | "int" | "double" | "long")
|
|
477
|
+
attr_accessor default_value: ::String
|
|
478
|
+
attr_accessor supported_values: ::Array[::String]
|
|
479
|
+
attr_accessor min_value: ::Float
|
|
480
|
+
attr_accessor max_value: ::Float
|
|
466
481
|
SENSITIVE: []
|
|
467
482
|
end
|
|
468
483
|
|
|
@@ -1261,6 +1276,7 @@ module Aws::CloudWatchLogs
|
|
|
1261
1276
|
attr_accessor limit: ::Integer
|
|
1262
1277
|
attr_accessor data_sources: ::Array[Types::DataSourceFilter]
|
|
1263
1278
|
attr_accessor field_index_names: ::Array[::String]
|
|
1279
|
+
attr_accessor log_group_tags: ::Array[Types::TagFilter]
|
|
1264
1280
|
SENSITIVE: []
|
|
1265
1281
|
end
|
|
1266
1282
|
|
|
@@ -1724,6 +1740,7 @@ module Aws::CloudWatchLogs
|
|
|
1724
1740
|
attr_accessor resource_arn: ::String
|
|
1725
1741
|
attr_accessor log_type: ::String
|
|
1726
1742
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1743
|
+
attr_accessor delivery_source_configuration: ::Hash[::String, ::String]
|
|
1727
1744
|
SENSITIVE: []
|
|
1728
1745
|
end
|
|
1729
1746
|
|
|
@@ -2004,6 +2021,12 @@ module Aws::CloudWatchLogs
|
|
|
2004
2021
|
SENSITIVE: []
|
|
2005
2022
|
end
|
|
2006
2023
|
|
|
2024
|
+
class S3TablesIntegration
|
|
2025
|
+
attr_accessor datasource_name: ::String
|
|
2026
|
+
attr_accessor datasource_type: ::String
|
|
2027
|
+
SENSITIVE: []
|
|
2028
|
+
end
|
|
2029
|
+
|
|
2007
2030
|
class ScheduledQueryDestination
|
|
2008
2031
|
attr_accessor destination_type: ("S3")
|
|
2009
2032
|
attr_accessor destination_identifier: ::String
|
|
@@ -2134,6 +2157,12 @@ module Aws::CloudWatchLogs
|
|
|
2134
2157
|
SENSITIVE: []
|
|
2135
2158
|
end
|
|
2136
2159
|
|
|
2160
|
+
class TagFilter
|
|
2161
|
+
attr_accessor key: ::String
|
|
2162
|
+
attr_accessor values: ::Array[::String]
|
|
2163
|
+
SENSITIVE: []
|
|
2164
|
+
end
|
|
2165
|
+
|
|
2137
2166
|
class TagLogGroupRequest
|
|
2138
2167
|
attr_accessor log_group_name: ::String
|
|
2139
2168
|
attr_accessor tags: ::Hash[::String, ::String]
|