aws-sdk-configservice 1.79.0 → 1.80.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bba84844b5eaae020aed7694cbd6f88bb6be0f9d6c82760964813a3f36f4cca7
4
- data.tar.gz: befaa5dc6f65917dd13b3ccad421dafd7c9bef9aa381c731cc249a1d570d053b
3
+ metadata.gz: 41724fe084e0a48047623137f939a63835cfacba4e2106c8a565b69320544235
4
+ data.tar.gz: 8e9fe90efc4cc53d8139b5cb8ed7c6b4680e2cc33b29e5d1fa0fdd8de18a5d91
5
5
  SHA512:
6
- metadata.gz: 8cab922c64e8a125653f5ed757ec6c69e890e62200ffd31d12e5e104c62baa2ba641bc0af50482fbc0a459830346266db5221ec3b3befdf1e15454dfe035cd2c
7
- data.tar.gz: d016fe156f6e31095a092b6dda2ad3cc7cc2d09f1835cc5e54a7d86683c97ebe6df8ddd10578ce055ae19c7fd553195d9887c79d1333481875f55080d6c84faf
6
+ metadata.gz: a56dc39397bb305ea1fe598037aefcc4027a7781e3d68c5bff9b1710bc573c3f53d3592c5680be316b7de5978ceaac25834656f84ed5c18d38f5fe21eb352f0b
7
+ data.tar.gz: 946f853ea814a114226d0425159aceea9d89d0442b48078350f6a97cdbf82aff0efe443601c37e58839cac48700a554bd2509098366393ba4bae4f13651a2a68
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.80.0 (2022-07-27)
5
+ ------------------
6
+
7
+ * Feature - This release adds ListConformancePackComplianceScores API to support the new compliance score feature, which provides a percentage of the number of compliant rule-resource combinations in a conformance pack compared to the number of total possible rule-resource combinations in the conformance pack.
8
+
4
9
  1.79.0 (2022-07-14)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.79.0
1
+ 1.80.0
@@ -3630,6 +3630,70 @@ module Aws::ConfigService
3630
3630
  req.send_request(options)
3631
3631
  end
3632
3632
 
3633
+ # Returns a list of conformance pack compliance scores. A compliance
3634
+ # score is the percentage of the number of compliant rule-resource
3635
+ # combinations in a conformance pack compared to the number of total
3636
+ # possible rule-resource combinations in the conformance pack. This
3637
+ # metric provides you with a high-level view of the compliance state of
3638
+ # your conformance packs, and can be used to identify, investigate, and
3639
+ # understand compliance deviations in your conformance packs.
3640
+ #
3641
+ # @option params [Types::ConformancePackComplianceScoresFilters] :filters
3642
+ # Filters the results based on the
3643
+ # `ConformancePackComplianceScoresFilters`.
3644
+ #
3645
+ # @option params [String] :sort_order
3646
+ # Determines the order in which conformance pack compliance scores are
3647
+ # sorted. Either in ascending or descending order.
3648
+ #
3649
+ # @option params [String] :sort_by
3650
+ # Sorts your conformance pack compliance scores in either ascending or
3651
+ # descending order, depending on `SortOrder`.
3652
+ #
3653
+ # @option params [Integer] :limit
3654
+ # The maximum number of conformance pack compliance scores returned on
3655
+ # each page.
3656
+ #
3657
+ # @option params [String] :next_token
3658
+ # The `nextToken` string in a prior request that you can use to get the
3659
+ # paginated response for next set of conformance pack compliance scores.
3660
+ #
3661
+ # @return [Types::ListConformancePackComplianceScoresResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3662
+ #
3663
+ # * {Types::ListConformancePackComplianceScoresResponse#next_token #next_token} => String
3664
+ # * {Types::ListConformancePackComplianceScoresResponse#conformance_pack_compliance_scores #conformance_pack_compliance_scores} => Array<Types::ConformancePackComplianceScore>
3665
+ #
3666
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3667
+ #
3668
+ # @example Request syntax with placeholder values
3669
+ #
3670
+ # resp = client.list_conformance_pack_compliance_scores({
3671
+ # filters: {
3672
+ # conformance_pack_names: ["ConformancePackName"], # required
3673
+ # },
3674
+ # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
3675
+ # sort_by: "SCORE", # accepts SCORE
3676
+ # limit: 1,
3677
+ # next_token: "NextToken",
3678
+ # })
3679
+ #
3680
+ # @example Response structure
3681
+ #
3682
+ # resp.next_token #=> String
3683
+ # resp.conformance_pack_compliance_scores #=> Array
3684
+ # resp.conformance_pack_compliance_scores[0].score #=> String
3685
+ # resp.conformance_pack_compliance_scores[0].conformance_pack_name #=> String
3686
+ # resp.conformance_pack_compliance_scores[0].last_updated_time #=> Time
3687
+ #
3688
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListConformancePackComplianceScores AWS API Documentation
3689
+ #
3690
+ # @overload list_conformance_pack_compliance_scores(params = {})
3691
+ # @param [Hash] params ({})
3692
+ def list_conformance_pack_compliance_scores(params = {}, options = {})
3693
+ req = build_request(:list_conformance_pack_compliance_scores, params)
3694
+ req.send_request(options)
3695
+ end
3696
+
3633
3697
  # Accepts a resource type and returns a list of resource identifiers for
3634
3698
  # the resources of that type. A resource identifier includes the
3635
3699
  # resource type, ID, and (if available) the custom resource name. The
@@ -5276,7 +5340,7 @@ module Aws::ConfigService
5276
5340
  params: params,
5277
5341
  config: config)
5278
5342
  context[:gem_name] = 'aws-sdk-configservice'
5279
- context[:gem_version] = '1.79.0'
5343
+ context[:gem_version] = '1.80.0'
5280
5344
  Seahorse::Client::Request.new(handlers, context)
5281
5345
  end
5282
5346
 
@@ -66,6 +66,7 @@ module Aws::ConfigService
66
66
  ComplianceByResources = Shapes::ListShape.new(name: 'ComplianceByResources')
67
67
  ComplianceContributorCount = Shapes::StructureShape.new(name: 'ComplianceContributorCount')
68
68
  ComplianceResourceTypes = Shapes::ListShape.new(name: 'ComplianceResourceTypes')
69
+ ComplianceScore = Shapes::StringShape.new(name: 'ComplianceScore')
69
70
  ComplianceSummariesByResourceType = Shapes::ListShape.new(name: 'ComplianceSummariesByResourceType')
70
71
  ComplianceSummary = Shapes::StructureShape.new(name: 'ComplianceSummary')
71
72
  ComplianceSummaryByResourceType = Shapes::StructureShape.new(name: 'ComplianceSummaryByResourceType')
@@ -104,6 +105,9 @@ module Aws::ConfigService
104
105
  ConformancePackArn = Shapes::StringShape.new(name: 'ConformancePackArn')
105
106
  ConformancePackComplianceFilters = Shapes::StructureShape.new(name: 'ConformancePackComplianceFilters')
106
107
  ConformancePackComplianceResourceIds = Shapes::ListShape.new(name: 'ConformancePackComplianceResourceIds')
108
+ ConformancePackComplianceScore = Shapes::StructureShape.new(name: 'ConformancePackComplianceScore')
109
+ ConformancePackComplianceScores = Shapes::ListShape.new(name: 'ConformancePackComplianceScores')
110
+ ConformancePackComplianceScoresFilters = Shapes::StructureShape.new(name: 'ConformancePackComplianceScoresFilters')
107
111
  ConformancePackComplianceSummary = Shapes::StructureShape.new(name: 'ConformancePackComplianceSummary')
108
112
  ConformancePackComplianceSummaryList = Shapes::ListShape.new(name: 'ConformancePackComplianceSummaryList')
109
113
  ConformancePackComplianceType = Shapes::StringShape.new(name: 'ConformancePackComplianceType')
@@ -116,6 +120,7 @@ module Aws::ConfigService
116
120
  ConformancePackInputParameter = Shapes::StructureShape.new(name: 'ConformancePackInputParameter')
117
121
  ConformancePackInputParameters = Shapes::ListShape.new(name: 'ConformancePackInputParameters')
118
122
  ConformancePackName = Shapes::StringShape.new(name: 'ConformancePackName')
123
+ ConformancePackNameFilter = Shapes::ListShape.new(name: 'ConformancePackNameFilter')
119
124
  ConformancePackNamesList = Shapes::ListShape.new(name: 'ConformancePackNamesList')
120
125
  ConformancePackNamesToSummarizeList = Shapes::ListShape.new(name: 'ConformancePackNamesToSummarizeList')
121
126
  ConformancePackRuleCompliance = Shapes::StructureShape.new(name: 'ConformancePackRuleCompliance')
@@ -293,11 +298,14 @@ module Aws::ConfigService
293
298
  InvalidSNSTopicARNException = Shapes::StructureShape.new(name: 'InvalidSNSTopicARNException')
294
299
  InvalidTimeRangeException = Shapes::StructureShape.new(name: 'InvalidTimeRangeException')
295
300
  LastDeliveryChannelDeleteFailedException = Shapes::StructureShape.new(name: 'LastDeliveryChannelDeleteFailedException')
301
+ LastUpdatedTime = Shapes::TimestampShape.new(name: 'LastUpdatedTime')
296
302
  LaterTime = Shapes::TimestampShape.new(name: 'LaterTime')
297
303
  Limit = Shapes::IntegerShape.new(name: 'Limit')
298
304
  LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
299
305
  ListAggregateDiscoveredResourcesRequest = Shapes::StructureShape.new(name: 'ListAggregateDiscoveredResourcesRequest')
300
306
  ListAggregateDiscoveredResourcesResponse = Shapes::StructureShape.new(name: 'ListAggregateDiscoveredResourcesResponse')
307
+ ListConformancePackComplianceScoresRequest = Shapes::StructureShape.new(name: 'ListConformancePackComplianceScoresRequest')
308
+ ListConformancePackComplianceScoresResponse = Shapes::StructureShape.new(name: 'ListConformancePackComplianceScoresResponse')
301
309
  ListDiscoveredResourcesRequest = Shapes::StructureShape.new(name: 'ListDiscoveredResourcesRequest')
302
310
  ListDiscoveredResourcesResponse = Shapes::StructureShape.new(name: 'ListDiscoveredResourcesResponse')
303
311
  ListStoredQueriesRequest = Shapes::StructureShape.new(name: 'ListStoredQueriesRequest')
@@ -473,6 +481,8 @@ module Aws::ConfigService
473
481
  SelectAggregateResourceConfigResponse = Shapes::StructureShape.new(name: 'SelectAggregateResourceConfigResponse')
474
482
  SelectResourceConfigRequest = Shapes::StructureShape.new(name: 'SelectResourceConfigRequest')
475
483
  SelectResourceConfigResponse = Shapes::StructureShape.new(name: 'SelectResourceConfigResponse')
484
+ SortBy = Shapes::StringShape.new(name: 'SortBy')
485
+ SortOrder = Shapes::StringShape.new(name: 'SortOrder')
476
486
  Source = Shapes::StructureShape.new(name: 'Source')
477
487
  SourceDetail = Shapes::StructureShape.new(name: 'SourceDetail')
478
488
  SourceDetails = Shapes::ListShape.new(name: 'SourceDetails')
@@ -809,6 +819,16 @@ module Aws::ConfigService
809
819
 
810
820
  ConformancePackComplianceResourceIds.member = Shapes::ShapeRef.new(shape: StringWithCharLimit256)
811
821
 
822
+ ConformancePackComplianceScore.add_member(:score, Shapes::ShapeRef.new(shape: ComplianceScore, location_name: "Score"))
823
+ ConformancePackComplianceScore.add_member(:conformance_pack_name, Shapes::ShapeRef.new(shape: ConformancePackName, location_name: "ConformancePackName"))
824
+ ConformancePackComplianceScore.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: LastUpdatedTime, location_name: "LastUpdatedTime"))
825
+ ConformancePackComplianceScore.struct_class = Types::ConformancePackComplianceScore
826
+
827
+ ConformancePackComplianceScores.member = Shapes::ShapeRef.new(shape: ConformancePackComplianceScore)
828
+
829
+ ConformancePackComplianceScoresFilters.add_member(:conformance_pack_names, Shapes::ShapeRef.new(shape: ConformancePackNameFilter, required: true, location_name: "ConformancePackNames"))
830
+ ConformancePackComplianceScoresFilters.struct_class = Types::ConformancePackComplianceScoresFilters
831
+
812
832
  ConformancePackComplianceSummary.add_member(:conformance_pack_name, Shapes::ShapeRef.new(shape: ConformancePackName, required: true, location_name: "ConformancePackName"))
813
833
  ConformancePackComplianceSummary.add_member(:conformance_pack_compliance_status, Shapes::ShapeRef.new(shape: ConformancePackComplianceType, required: true, location_name: "ConformancePackComplianceStatus"))
814
834
  ConformancePackComplianceSummary.struct_class = Types::ConformancePackComplianceSummary
@@ -848,6 +868,8 @@ module Aws::ConfigService
848
868
 
849
869
  ConformancePackInputParameters.member = Shapes::ShapeRef.new(shape: ConformancePackInputParameter)
850
870
 
871
+ ConformancePackNameFilter.member = Shapes::ShapeRef.new(shape: ConformancePackName)
872
+
851
873
  ConformancePackNamesList.member = Shapes::ShapeRef.new(shape: ConformancePackName)
852
874
 
853
875
  ConformancePackNamesToSummarizeList.member = Shapes::ShapeRef.new(shape: ConformancePackName)
@@ -1467,6 +1489,17 @@ module Aws::ConfigService
1467
1489
  ListAggregateDiscoveredResourcesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1468
1490
  ListAggregateDiscoveredResourcesResponse.struct_class = Types::ListAggregateDiscoveredResourcesResponse
1469
1491
 
1492
+ ListConformancePackComplianceScoresRequest.add_member(:filters, Shapes::ShapeRef.new(shape: ConformancePackComplianceScoresFilters, location_name: "Filters"))
1493
+ ListConformancePackComplianceScoresRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
1494
+ ListConformancePackComplianceScoresRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: SortBy, location_name: "SortBy"))
1495
+ ListConformancePackComplianceScoresRequest.add_member(:limit, Shapes::ShapeRef.new(shape: PageSizeLimit, location_name: "Limit"))
1496
+ ListConformancePackComplianceScoresRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1497
+ ListConformancePackComplianceScoresRequest.struct_class = Types::ListConformancePackComplianceScoresRequest
1498
+
1499
+ ListConformancePackComplianceScoresResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1500
+ ListConformancePackComplianceScoresResponse.add_member(:conformance_pack_compliance_scores, Shapes::ShapeRef.new(shape: ConformancePackComplianceScores, required: true, location_name: "ConformancePackComplianceScores"))
1501
+ ListConformancePackComplianceScoresResponse.struct_class = Types::ListConformancePackComplianceScoresResponse
1502
+
1470
1503
  ListDiscoveredResourcesRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: ResourceType, required: true, location_name: "resourceType"))
1471
1504
  ListDiscoveredResourcesRequest.add_member(:resource_ids, Shapes::ShapeRef.new(shape: ResourceIdList, location_name: "resourceIds"))
1472
1505
  ListDiscoveredResourcesRequest.add_member(:resource_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "resourceName"))
@@ -2926,6 +2959,23 @@ module Aws::ConfigService
2926
2959
  )
2927
2960
  end)
2928
2961
 
2962
+ api.add_operation(:list_conformance_pack_compliance_scores, Seahorse::Model::Operation.new.tap do |o|
2963
+ o.name = "ListConformancePackComplianceScores"
2964
+ o.http_method = "POST"
2965
+ o.http_request_uri = "/"
2966
+ o.input = Shapes::ShapeRef.new(shape: ListConformancePackComplianceScoresRequest)
2967
+ o.output = Shapes::ShapeRef.new(shape: ListConformancePackComplianceScoresResponse)
2968
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterValueException)
2969
+ o.errors << Shapes::ShapeRef.new(shape: InvalidLimitException)
2970
+ o.errors << Shapes::ShapeRef.new(shape: InvalidNextTokenException)
2971
+ o[:pager] = Aws::Pager.new(
2972
+ limit_key: "limit",
2973
+ tokens: {
2974
+ "next_token" => "next_token"
2975
+ }
2976
+ )
2977
+ end)
2978
+
2929
2979
  api.add_operation(:list_discovered_resources, Seahorse::Model::Operation.new.tap do |o|
2930
2980
  o.name = "ListDiscoveredResources"
2931
2981
  o.http_method = "POST"
@@ -1626,6 +1626,60 @@ module Aws::ConfigService
1626
1626
  include Aws::Structure
1627
1627
  end
1628
1628
 
1629
+ # A compliance score is the percentage of the number of compliant
1630
+ # rule-resource combinations in a conformance pack compared to the
1631
+ # number of total possible rule-resource combinations in the conformance
1632
+ # pack. This metric provides you with a high-level view of the
1633
+ # compliance state of your conformance packs, and can be used to
1634
+ # identify, investigate, and understand compliance deviations in your
1635
+ # conformance packs.
1636
+ #
1637
+ # @!attribute [rw] score
1638
+ # Compliance score for the conformance pack.
1639
+ # @return [String]
1640
+ #
1641
+ # @!attribute [rw] conformance_pack_name
1642
+ # The name of the conformance pack.
1643
+ # @return [String]
1644
+ #
1645
+ # @!attribute [rw] last_updated_time
1646
+ # The time that the conformance pack compliance score was last
1647
+ # updated.
1648
+ # @return [Time]
1649
+ #
1650
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConformancePackComplianceScore AWS API Documentation
1651
+ #
1652
+ class ConformancePackComplianceScore < Struct.new(
1653
+ :score,
1654
+ :conformance_pack_name,
1655
+ :last_updated_time)
1656
+ SENSITIVE = []
1657
+ include Aws::Structure
1658
+ end
1659
+
1660
+ # A list of filters to apply to the conformance pack compliance score
1661
+ # result set.
1662
+ #
1663
+ # @note When making an API call, you may pass ConformancePackComplianceScoresFilters
1664
+ # data as a hash:
1665
+ #
1666
+ # {
1667
+ # conformance_pack_names: ["ConformancePackName"], # required
1668
+ # }
1669
+ #
1670
+ # @!attribute [rw] conformance_pack_names
1671
+ # The name of a conformance pack whose score should be included in the
1672
+ # compliance score result.
1673
+ # @return [Array<String>]
1674
+ #
1675
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConformancePackComplianceScoresFilters AWS API Documentation
1676
+ #
1677
+ class ConformancePackComplianceScoresFilters < Struct.new(
1678
+ :conformance_pack_names)
1679
+ SENSITIVE = []
1680
+ include Aws::Structure
1681
+ end
1682
+
1629
1683
  # Summary includes the name and status of the conformance pack.
1630
1684
  #
1631
1685
  # @!attribute [rw] conformance_pack_name
@@ -5371,6 +5425,75 @@ module Aws::ConfigService
5371
5425
  include Aws::Structure
5372
5426
  end
5373
5427
 
5428
+ # @note When making an API call, you may pass ListConformancePackComplianceScoresRequest
5429
+ # data as a hash:
5430
+ #
5431
+ # {
5432
+ # filters: {
5433
+ # conformance_pack_names: ["ConformancePackName"], # required
5434
+ # },
5435
+ # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
5436
+ # sort_by: "SCORE", # accepts SCORE
5437
+ # limit: 1,
5438
+ # next_token: "NextToken",
5439
+ # }
5440
+ #
5441
+ # @!attribute [rw] filters
5442
+ # Filters the results based on the
5443
+ # `ConformancePackComplianceScoresFilters`.
5444
+ # @return [Types::ConformancePackComplianceScoresFilters]
5445
+ #
5446
+ # @!attribute [rw] sort_order
5447
+ # Determines the order in which conformance pack compliance scores are
5448
+ # sorted. Either in ascending or descending order.
5449
+ # @return [String]
5450
+ #
5451
+ # @!attribute [rw] sort_by
5452
+ # Sorts your conformance pack compliance scores in either ascending or
5453
+ # descending order, depending on `SortOrder`.
5454
+ # @return [String]
5455
+ #
5456
+ # @!attribute [rw] limit
5457
+ # The maximum number of conformance pack compliance scores returned on
5458
+ # each page.
5459
+ # @return [Integer]
5460
+ #
5461
+ # @!attribute [rw] next_token
5462
+ # The `nextToken` string in a prior request that you can use to get
5463
+ # the paginated response for next set of conformance pack compliance
5464
+ # scores.
5465
+ # @return [String]
5466
+ #
5467
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListConformancePackComplianceScoresRequest AWS API Documentation
5468
+ #
5469
+ class ListConformancePackComplianceScoresRequest < Struct.new(
5470
+ :filters,
5471
+ :sort_order,
5472
+ :sort_by,
5473
+ :limit,
5474
+ :next_token)
5475
+ SENSITIVE = []
5476
+ include Aws::Structure
5477
+ end
5478
+
5479
+ # @!attribute [rw] next_token
5480
+ # The `nextToken` string that you can use to get the next page of
5481
+ # results in a paginated response.
5482
+ # @return [String]
5483
+ #
5484
+ # @!attribute [rw] conformance_pack_compliance_scores
5485
+ # A list of `ConformancePackComplianceScore` objects
5486
+ # @return [Array<Types::ConformancePackComplianceScore>]
5487
+ #
5488
+ # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ListConformancePackComplianceScoresResponse AWS API Documentation
5489
+ #
5490
+ class ListConformancePackComplianceScoresResponse < Struct.new(
5491
+ :next_token,
5492
+ :conformance_pack_compliance_scores)
5493
+ SENSITIVE = []
5494
+ include Aws::Structure
5495
+ end
5496
+
5374
5497
  # @note When making an API call, you may pass ListDiscoveredResourcesRequest
5375
5498
  # data as a hash:
5376
5499
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-configservice/customizations'
48
48
  # @!group service
49
49
  module Aws::ConfigService
50
50
 
51
- GEM_VERSION = '1.79.0'
51
+ GEM_VERSION = '1.80.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-configservice
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: 2022-07-14 00:00:00.000000000 Z
11
+ date: 2022-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core