aws-sdk-cloudwatchlogs 1.79.0 → 1.80.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4410a18c6d11ef7163f799e49d08da4badbbd80662a5947c2ae9087d54812210
4
- data.tar.gz: a9003066dc1616d0bed560cd03ee7b3c2b9e6c41d96269fb52831f439b2e4caa
3
+ metadata.gz: dc8b761755ea5a372bd4c0b79d92c5867b7fdcef144cc66d973629a03e31bea3
4
+ data.tar.gz: d2f00efdb3b4b088e7b09337f4d3238b1de13132ec32117a68d4350b5e5a9462
5
5
  SHA512:
6
- metadata.gz: 7d8d88aba78dd18b7564c8d9ed9867bb0f00d9ec1e6089d521fcbf725fde8ccb8012adaebfda772d8997967155265cfd050e029084d7e756e7779ad78ddeded0
7
- data.tar.gz: 9cda1ffae9dc2377d9019304099bae61c02de922484e95f2c58699a58c226be6176fa113843ebc8b05d85cec16dfe638bad2e83d53a5ddc1e251cb82a21a1671
6
+ metadata.gz: d6bdc15d0b9879e2408064370ac7edf78c31c934aad0d6cbb1a91faf028db29976d0b14a8685c6b8db3efe86fb04c96e9b6d6bd1d9d7eefef9cb3a0f4762bb56
7
+ data.tar.gz: 71a3f8f8b4c17e30664e5f834b72f01ddb8fbf6f626ed5bfbd0677cd3f87d0f7208a2b825b137dbf4b9d6eb5c3f6d4bb35babc5b8a1d6aaaaa9fdc0776d18537
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.80.0 (2024-03-19)
5
+ ------------------
6
+
7
+ * Feature - Update LogSamples field in Anomaly model to be a list of LogEvent
8
+
4
9
  1.79.0 (2024-02-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.79.0
1
+ 1.80.0
@@ -569,7 +569,7 @@ module Aws::CloudWatchLogs
569
569
  # from Amazon Web Services services.][1]
570
570
  #
571
571
  # A delivery destination can represent a log group in CloudWatch Logs,
572
- # an Amazon S3 bucket, or a delivery stream in Kinesis Data Firehose.
572
+ # an Amazon S3 bucket, or a delivery stream in Firehose.
573
573
  #
574
574
  # To configure logs delivery between a supported Amazon Web Services
575
575
  # service and a destination, you must do the following:
@@ -1526,10 +1526,9 @@ module Aws::CloudWatchLogs
1526
1526
  #
1527
1527
  # A delivery source represents an Amazon Web Services resource that
1528
1528
  # sends logs to an logs delivery destination. The destination can be
1529
- # CloudWatch Logs, Amazon S3, or Kinesis Data Firehose. Only some Amazon
1530
- # Web Services services support being configured as a delivery source.
1531
- # These services are listed in [Enable logging from Amazon Web Services
1532
- # services.][3]
1529
+ # CloudWatch Logs, Amazon S3, or Firehose. Only some Amazon Web Services
1530
+ # services support being configured as a delivery source. These services
1531
+ # are listed in [Enable logging from Amazon Web Services services.][3]
1533
1532
  #
1534
1533
  #
1535
1534
  #
@@ -2573,10 +2572,9 @@ module Aws::CloudWatchLogs
2573
2572
  #
2574
2573
  # A delivery source represents an Amazon Web Services resource that
2575
2574
  # sends logs to an logs delivery destination. The destination can be
2576
- # CloudWatch Logs, Amazon S3, or Kinesis Data Firehose. Only some Amazon
2577
- # Web Services services support being configured as a delivery source.
2578
- # These services are listed in [Enable logging from Amazon Web Services
2579
- # services.][3]
2575
+ # CloudWatch Logs, Amazon S3, or Firehose. Only some Amazon Web Services
2576
+ # services support being configured as a delivery source. These services
2577
+ # are listed in [Enable logging from Amazon Web Services services.][3]
2580
2578
  #
2581
2579
  # You need to specify the delivery `id` in this operation. You can find
2582
2580
  # the IDs of the deliveries in your account with the
@@ -3141,7 +3139,8 @@ module Aws::CloudWatchLogs
3141
3139
  # resp.anomalies[0].histogram #=> Hash
3142
3140
  # resp.anomalies[0].histogram["Time"] #=> Integer
3143
3141
  # resp.anomalies[0].log_samples #=> Array
3144
- # resp.anomalies[0].log_samples[0] #=> String
3142
+ # resp.anomalies[0].log_samples[0].timestamp #=> Integer
3143
+ # resp.anomalies[0].log_samples[0].message #=> String
3145
3144
  # resp.anomalies[0].pattern_tokens #=> Array
3146
3145
  # resp.anomalies[0].pattern_tokens[0].dynamic_token_position #=> Integer
3147
3146
  # resp.anomalies[0].pattern_tokens[0].is_dynamic #=> Boolean
@@ -3348,25 +3347,24 @@ module Aws::CloudWatchLogs
3348
3347
  # from CloudWatch Logs to other Amazon Web Services services.
3349
3348
  # Account-level subscription filter policies apply to both existing log
3350
3349
  # groups and log groups that are created later in this account.
3351
- # Supported destinations are Kinesis Data Streams, Kinesis Data
3352
- # Firehose, and Lambda. When log events are sent to the receiving
3353
- # service, they are Base64 encoded and compressed with the GZIP format.
3350
+ # Supported destinations are Kinesis Data Streams, Firehose, and Lambda.
3351
+ # When log events are sent to the receiving service, they are Base64
3352
+ # encoded and compressed with the GZIP format.
3354
3353
  #
3355
3354
  # The following destinations are supported for subscription filters:
3356
3355
  #
3357
3356
  # * An Kinesis Data Streams data stream in the same account as the
3358
3357
  # subscription policy, for same-account delivery.
3359
3358
  #
3360
- # * An Kinesis Data Firehose data stream in the same account as the
3361
- # subscription policy, for same-account delivery.
3359
+ # * An Firehose data stream in the same account as the subscription
3360
+ # policy, for same-account delivery.
3362
3361
  #
3363
3362
  # * A Lambda function in the same account as the subscription policy,
3364
3363
  # for same-account delivery.
3365
3364
  #
3366
3365
  # * A logical destination in a different account created with
3367
3366
  # [PutDestination][5], for cross-account delivery. Kinesis Data
3368
- # Streams and Kinesis Data Firehose are supported as logical
3369
- # destinations.
3367
+ # Streams and Firehose are supported as logical destinations.
3370
3368
  #
3371
3369
  # Each account can have one account-level subscription filter policy. If
3372
3370
  # you are updating an existing filter, you must specify the correct name
@@ -3403,8 +3401,7 @@ module Aws::CloudWatchLogs
3403
3401
  # `FindingsDestination` object. You can optionally use that
3404
3402
  # `FindingsDestination` object to list one or more destinations to
3405
3403
  # send audit findings to. If you specify destinations such as log
3406
- # groups, Kinesis Data Firehose streams, and S3 buckets, they must
3407
- # already exist.
3404
+ # groups, Firehose streams, and S3 buckets, they must already exist.
3408
3405
  #
3409
3406
  # * The second block must include both a `DataIdentifer` array and an
3410
3407
  # `Operation` property with an `Deidentify` action. The
@@ -3440,16 +3437,15 @@ module Aws::CloudWatchLogs
3440
3437
  # * An Kinesis Data Streams data stream in the same account as the
3441
3438
  # subscription policy, for same-account delivery.
3442
3439
  #
3443
- # * An Kinesis Data Firehose data stream in the same account as the
3444
- # subscription policy, for same-account delivery.
3440
+ # * An Firehose data stream in the same account as the subscription
3441
+ # policy, for same-account delivery.
3445
3442
  #
3446
3443
  # * A Lambda function in the same account as the subscription policy,
3447
3444
  # for same-account delivery.
3448
3445
  #
3449
3446
  # * A logical destination in a different account created with
3450
3447
  # [PutDestination][2], for cross-account delivery. Kinesis Data
3451
- # Streams and Kinesis Data Firehose are supported as logical
3452
- # destinations.
3448
+ # Streams and Firehose are supported as logical destinations.
3453
3449
  #
3454
3450
  # * **RoleArn** The ARN of an IAM role that grants CloudWatch Logs
3455
3451
  # permissions to deliver ingested log events to the destination
@@ -3582,8 +3578,7 @@ module Aws::CloudWatchLogs
3582
3578
  # `FindingsDestination` object. You can optionally use that
3583
3579
  # `FindingsDestination` object to list one or more destinations to
3584
3580
  # send audit findings to. If you specify destinations such as log
3585
- # groups, Kinesis Data Firehose streams, and S3 buckets, they must
3586
- # already exist.
3581
+ # groups, Firehose streams, and S3 buckets, they must already exist.
3587
3582
  #
3588
3583
  # * The second block must include both a `DataIdentifer` array and an
3589
3584
  # `Operation` property with an `Deidentify` action. The
@@ -3641,8 +3636,7 @@ module Aws::CloudWatchLogs
3641
3636
  # Creates or updates a logical *delivery destination*. A delivery
3642
3637
  # destination is an Amazon Web Services resource that represents an
3643
3638
  # Amazon Web Services service that logs can be sent to. CloudWatch Logs,
3644
- # Amazon S3, and Kinesis Data Firehose are supported as logs delivery
3645
- # destinations.
3639
+ # Amazon S3, and Firehose are supported as logs delivery destinations.
3646
3640
  #
3647
3641
  # To configure logs delivery between a supported Amazon Web Services
3648
3642
  # service and a destination, you must do the following:
@@ -3812,7 +3806,7 @@ module Aws::CloudWatchLogs
3812
3806
  # Creates or updates a logical *delivery source*. A delivery source
3813
3807
  # represents an Amazon Web Services resource that sends logs to an logs
3814
3808
  # delivery destination. The destination can be CloudWatch Logs, Amazon
3815
- # S3, or Kinesis Data Firehose.
3809
+ # S3, or Firehose.
3816
3810
  #
3817
3811
  # To configure logs delivery between a delivery destination and an
3818
3812
  # Amazon Web Services service that is supported as a delivery source,
@@ -3866,8 +3860,15 @@ module Aws::CloudWatchLogs
3866
3860
  # `arn:aws:workmail:us-east-1:123456789012:organization/m-1234EXAMPLEabcd1234abcd1234abcd1234`
3867
3861
  #
3868
3862
  # @option params [required, String] :log_type
3869
- # Defines the type of log that the source is sending. For Amazon
3870
- # CodeWhisperer, the valid value is `EVENT_LOGS`.
3863
+ # Defines the type of log that the source is sending.
3864
+ #
3865
+ # * For Amazon CodeWhisperer, the valid value is `EVENT_LOGS`.
3866
+ #
3867
+ # * For IAM Identity Centerr, the valid value is `ERROR_LOGS`.
3868
+ #
3869
+ # * For Amazon WorkMail, the valid values are `ACCESS_CONTROL_LOGS`,
3870
+ # `AUTHENTICATION_LOGS`, `WORKMAIL_AVAILABILITY_PROVIDER_LOGS`, and
3871
+ # `WORKMAIL_MAILBOX_ACCESS_LOGS`.
3871
3872
  #
3872
3873
  # @option params [Hash<String,String>] :tags
3873
3874
  # An optional list of key-value pairs to associate with the resource.
@@ -4450,8 +4451,7 @@ module Aws::CloudWatchLogs
4450
4451
  #
4451
4452
  # * A logical destination created with [PutDestination][2] that belongs
4452
4453
  # to a different account, for cross-account delivery. We currently
4453
- # support Kinesis Data Streams and Kinesis Data Firehose as logical
4454
- # destinations.
4454
+ # support Kinesis Data Streams and Firehose as logical destinations.
4455
4455
  #
4456
4456
  # * An Amazon Kinesis Data Firehose delivery stream that belongs to the
4457
4457
  # same account as the subscription filter, for same-account delivery.
@@ -5349,7 +5349,7 @@ module Aws::CloudWatchLogs
5349
5349
  params: params,
5350
5350
  config: config)
5351
5351
  context[:gem_name] = 'aws-sdk-cloudwatchlogs'
5352
- context[:gem_version] = '1.79.0'
5352
+ context[:gem_version] = '1.80.0'
5353
5353
  Seahorse::Client::Request.new(handlers, context)
5354
5354
  end
5355
5355
 
@@ -196,7 +196,7 @@ module Aws::CloudWatchLogs
196
196
  LiveTailSessionResults = Shapes::ListShape.new(name: 'LiveTailSessionResults')
197
197
  LiveTailSessionStart = Shapes::StructureShape.new(name: 'LiveTailSessionStart')
198
198
  LiveTailSessionUpdate = Shapes::StructureShape.new(name: 'LiveTailSessionUpdate')
199
- LogEvent = Shapes::StringShape.new(name: 'LogEvent')
199
+ LogEvent = Shapes::StructureShape.new(name: 'LogEvent')
200
200
  LogEventIndex = Shapes::IntegerShape.new(name: 'LogEventIndex')
201
201
  LogGroup = Shapes::StructureShape.new(name: 'LogGroup')
202
202
  LogGroupArn = Shapes::StringShape.new(name: 'LogGroupArn')
@@ -904,6 +904,10 @@ module Aws::CloudWatchLogs
904
904
  LiveTailSessionUpdate.add_member(:session_results, Shapes::ShapeRef.new(shape: LiveTailSessionResults, location_name: "sessionResults"))
905
905
  LiveTailSessionUpdate.struct_class = Types::LiveTailSessionUpdate
906
906
 
907
+ LogEvent.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "timestamp"))
908
+ LogEvent.add_member(:message, Shapes::ShapeRef.new(shape: EventMessage, location_name: "message"))
909
+ LogEvent.struct_class = Types::LogEvent
910
+
907
911
  LogGroup.add_member(:log_group_name, Shapes::ShapeRef.new(shape: LogGroupName, location_name: "logGroupName"))
908
912
  LogGroup.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "creationTime"))
909
913
  LogGroup.add_member(:retention_in_days, Shapes::ShapeRef.new(shape: Days, location_name: "retentionInDays"))
@@ -146,7 +146,7 @@ module Aws::CloudWatchLogs
146
146
  # @!attribute [rw] log_samples
147
147
  # An array of sample log event messages that are considered to be part
148
148
  # of this anomaly.
149
- # @return [Array<String>]
149
+ # @return [Array<Types::LogEvent>]
150
150
  #
151
151
  # @!attribute [rw] pattern_tokens
152
152
  # An array of structures where each structure contains information
@@ -925,7 +925,7 @@ module Aws::CloudWatchLogs
925
925
  #
926
926
  # @!attribute [rw] delivery_destination_type
927
927
  # Displays whether the delivery destination associated with this
928
- # delivery is CloudWatch Logs, Amazon S3, or Kinesis Data Firehose.
928
+ # delivery is CloudWatch Logs, Amazon S3, or Firehose.
929
929
  # @return [String]
930
930
  #
931
931
  # @!attribute [rw] tags
@@ -948,8 +948,8 @@ module Aws::CloudWatchLogs
948
948
  # This structure contains information about one *delivery destination*
949
949
  # in your account. A delivery destination is an Amazon Web Services
950
950
  # resource that represents an Amazon Web Services service that logs can
951
- # be sent to. CloudWatch Logs, Amazon S3, are supported as Kinesis Data
952
- # Firehose delivery destinations.
951
+ # be sent to. CloudWatch Logs, Amazon S3, are supported as Firehose
952
+ # delivery destinations.
953
953
  #
954
954
  # To configure logs delivery between a supported Amazon Web Services
955
955
  # service and a destination, you must do the following:
@@ -991,7 +991,7 @@ module Aws::CloudWatchLogs
991
991
  #
992
992
  # @!attribute [rw] delivery_destination_type
993
993
  # Displays whether this delivery destination is CloudWatch Logs,
994
- # Amazon S3, or Kinesis Data Firehose.
994
+ # Amazon S3, or Firehose.
995
995
  # @return [String]
996
996
  #
997
997
  # @!attribute [rw] output_format
@@ -1027,7 +1027,7 @@ module Aws::CloudWatchLogs
1027
1027
  # The ARN of the Amazon Web Services destination that this delivery
1028
1028
  # destination represents. That Amazon Web Services destination can be
1029
1029
  # a log group in CloudWatch Logs, an Amazon S3 bucket, or a delivery
1030
- # stream in Kinesis Data Firehose.
1030
+ # stream in Firehose.
1031
1031
  # @return [String]
1032
1032
  #
1033
1033
  # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/DeliveryDestinationConfiguration AWS API Documentation
@@ -1041,7 +1041,7 @@ module Aws::CloudWatchLogs
1041
1041
  # This structure contains information about one *delivery source* in
1042
1042
  # your account. A delivery source is an Amazon Web Services resource
1043
1043
  # that sends logs to an Amazon Web Services destination. The destination
1044
- # can be CloudWatch Logs, Amazon S3, or Kinesis Data Firehose.
1044
+ # can be CloudWatch Logs, Amazon S3, or Firehose.
1045
1045
  #
1046
1046
  # Only some Amazon Web Services services support being configured as a
1047
1047
  # delivery source. These services are listed as **Supported \[V2
@@ -3006,6 +3006,26 @@ module Aws::CloudWatchLogs
3006
3006
  include Aws::Structure
3007
3007
  end
3008
3008
 
3009
+ # This structure contains the information for one sample log event that
3010
+ # is associated with an anomaly found by a log anomaly detector.
3011
+ #
3012
+ # @!attribute [rw] timestamp
3013
+ # The time stamp of the log event.
3014
+ # @return [Integer]
3015
+ #
3016
+ # @!attribute [rw] message
3017
+ # The message content of the log event.
3018
+ # @return [String]
3019
+ #
3020
+ # @see http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/LogEvent AWS API Documentation
3021
+ #
3022
+ class LogEvent < Struct.new(
3023
+ :timestamp,
3024
+ :message)
3025
+ SENSITIVE = []
3026
+ include Aws::Structure
3027
+ end
3028
+
3009
3029
  # Represents a log group.
3010
3030
  #
3011
3031
  # @!attribute [rw] log_group_name
@@ -3493,8 +3513,7 @@ module Aws::CloudWatchLogs
3493
3513
  # `FindingsDestination` object. You can optionally use that
3494
3514
  # `FindingsDestination` object to list one or more destinations to
3495
3515
  # send audit findings to. If you specify destinations such as log
3496
- # groups, Kinesis Data Firehose streams, and S3 buckets, they must
3497
- # already exist.
3516
+ # groups, Firehose streams, and S3 buckets, they must already exist.
3498
3517
  #
3499
3518
  # * The second block must include both a `DataIdentifer` array and an
3500
3519
  # `Operation` property with an `Deidentify` action. The
@@ -3530,16 +3549,15 @@ module Aws::CloudWatchLogs
3530
3549
  # * An Kinesis Data Streams data stream in the same account as the
3531
3550
  # subscription policy, for same-account delivery.
3532
3551
  #
3533
- # * An Kinesis Data Firehose data stream in the same account as the
3534
- # subscription policy, for same-account delivery.
3552
+ # * An Firehose data stream in the same account as the subscription
3553
+ # policy, for same-account delivery.
3535
3554
  #
3536
3555
  # * A Lambda function in the same account as the subscription
3537
3556
  # policy, for same-account delivery.
3538
3557
  #
3539
3558
  # * A logical destination in a different account created with
3540
3559
  # [PutDestination][2], for cross-account delivery. Kinesis Data
3541
- # Streams and Kinesis Data Firehose are supported as logical
3542
- # destinations.
3560
+ # Streams and Firehose are supported as logical destinations.
3543
3561
  #
3544
3562
  # * **RoleArn** The ARN of an IAM role that grants CloudWatch Logs
3545
3563
  # permissions to deliver ingested log events to the destination
@@ -3635,8 +3653,7 @@ module Aws::CloudWatchLogs
3635
3653
  # `FindingsDestination` object. You can optionally use that
3636
3654
  # `FindingsDestination` object to list one or more destinations to
3637
3655
  # send audit findings to. If you specify destinations such as log
3638
- # groups, Kinesis Data Firehose streams, and S3 buckets, they must
3639
- # already exist.
3656
+ # groups, Firehose streams, and S3 buckets, they must already exist.
3640
3657
  #
3641
3658
  # * The second block must include both a `DataIdentifer` array and an
3642
3659
  # `Operation` property with an `Deidentify` action. The
@@ -3786,8 +3803,15 @@ module Aws::CloudWatchLogs
3786
3803
  # @return [String]
3787
3804
  #
3788
3805
  # @!attribute [rw] log_type
3789
- # Defines the type of log that the source is sending. For Amazon
3790
- # CodeWhisperer, the valid value is `EVENT_LOGS`.
3806
+ # Defines the type of log that the source is sending.
3807
+ #
3808
+ # * For Amazon CodeWhisperer, the valid value is `EVENT_LOGS`.
3809
+ #
3810
+ # * For IAM Identity Centerr, the valid value is `ERROR_LOGS`.
3811
+ #
3812
+ # * For Amazon WorkMail, the valid values are `ACCESS_CONTROL_LOGS`,
3813
+ # `AUTHENTICATION_LOGS`, `WORKMAIL_AVAILABILITY_PROVIDER_LOGS`, and
3814
+ # `WORKMAIL_MAILBOX_ACCESS_LOGS`.
3791
3815
  # @return [String]
3792
3816
  #
3793
3817
  # @!attribute [rw] tags
@@ -4380,11 +4404,13 @@ module Aws::CloudWatchLogs
4380
4404
  # Represents the rejected events.
4381
4405
  #
4382
4406
  # @!attribute [rw] too_new_log_event_start_index
4383
- # The log events that are too new.
4407
+ # The index of the first log event that is too new. This field is
4408
+ # inclusive.
4384
4409
  # @return [Integer]
4385
4410
  #
4386
4411
  # @!attribute [rw] too_old_log_event_end_index
4387
- # The log events that are dated too far in the past.
4412
+ # The index of the last log event that is too old. This field is
4413
+ # exclusive.
4388
4414
  # @return [Integer]
4389
4415
  #
4390
4416
  # @!attribute [rw] expired_log_event_end_index
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-cloudwatchlogs/event_streams'
53
53
  # @!group service
54
54
  module Aws::CloudWatchLogs
55
55
 
56
- GEM_VERSION = '1.79.0'
56
+ GEM_VERSION = '1.80.0'
57
57
 
58
58
  end
data/sig/types.rbs CHANGED
@@ -35,7 +35,7 @@ module Aws::CloudWatchLogs
35
35
  attr_accessor active: bool
36
36
  attr_accessor state: ("Active" | "Suppressed" | "Baseline")
37
37
  attr_accessor histogram: ::Hash[::String, ::Integer]
38
- attr_accessor log_samples: ::Array[::String]
38
+ attr_accessor log_samples: ::Array[Types::LogEvent]
39
39
  attr_accessor pattern_tokens: ::Array[Types::PatternToken]
40
40
  attr_accessor log_group_arn_list: ::Array[::String]
41
41
  attr_accessor suppressed: bool
@@ -731,6 +731,12 @@ module Aws::CloudWatchLogs
731
731
  SENSITIVE: []
732
732
  end
733
733
 
734
+ class LogEvent
735
+ attr_accessor timestamp: ::Integer
736
+ attr_accessor message: ::String
737
+ SENSITIVE: []
738
+ end
739
+
734
740
  class LogGroup
735
741
  attr_accessor log_group_name: ::String
736
742
  attr_accessor creation_time: ::Integer
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudwatchlogs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.79.0
4
+ version: 1.80.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-06 00:00:00.000000000 Z
11
+ date: 2024-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core