aws-sdk-ssm 1.34.0 → 1.35.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/lib/aws-sdk-ssm.rb +1 -1
- data/lib/aws-sdk-ssm/client.rb +20 -1
- data/lib/aws-sdk-ssm/client_api.rb +5 -0
- data/lib/aws-sdk-ssm/types.rb +38 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b4aa89fc5d1bc9346fbc88c8a724f2e18f784de2
|
|
4
|
+
data.tar.gz: e1b2653d9a2e880bc897d613a0f49b10ee70d715
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: feeabcf13e70c72f9f07a193906bad20253d0d18a8119fc490d7b4ae332e847c6d5043f57fd4c907ac3d1312060ba587ae16a2ab37c8b5fa0bd2732051a7d457
|
|
7
|
+
data.tar.gz: d5faa8e448eda3b46d0e5a9ba7672cdadbb810c6f85908dd20783722142292894c6abdcdc73982edc960f675f7e40af759fb32a990776305f7a5bfe267b9be06
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/lib/aws-sdk-ssm/client.rb
CHANGED
|
@@ -466,6 +466,11 @@ module Aws::SSM
|
|
|
466
466
|
# @option params [String] :association_name
|
|
467
467
|
# Specify a descriptive name for the association.
|
|
468
468
|
#
|
|
469
|
+
# @option params [String] :automation_target_parameter_name
|
|
470
|
+
# Specify the target for the association. This target is required for
|
|
471
|
+
# associations that use an Automation document and target resources by
|
|
472
|
+
# using rate controls.
|
|
473
|
+
#
|
|
469
474
|
# @option params [String] :max_errors
|
|
470
475
|
# The number of errors that are allowed before the system stops sending
|
|
471
476
|
# requests to run the association on additional targets. You can specify
|
|
@@ -526,6 +531,7 @@ module Aws::SSM
|
|
|
526
531
|
# },
|
|
527
532
|
# },
|
|
528
533
|
# association_name: "AssociationName",
|
|
534
|
+
# automation_target_parameter_name: "AutomationTargetParameterName",
|
|
529
535
|
# max_errors: "MaxErrors",
|
|
530
536
|
# max_concurrency: "MaxConcurrency",
|
|
531
537
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
|
@@ -547,6 +553,7 @@ module Aws::SSM
|
|
|
547
553
|
# resp.association_description.overview.association_status_aggregated_count #=> Hash
|
|
548
554
|
# resp.association_description.overview.association_status_aggregated_count["StatusName"] #=> Integer
|
|
549
555
|
# resp.association_description.document_version #=> String
|
|
556
|
+
# resp.association_description.automation_target_parameter_name #=> String
|
|
550
557
|
# resp.association_description.parameters #=> Hash
|
|
551
558
|
# resp.association_description.parameters["ParameterName"] #=> Array
|
|
552
559
|
# resp.association_description.parameters["ParameterName"][0] #=> String
|
|
@@ -604,6 +611,7 @@ module Aws::SSM
|
|
|
604
611
|
# parameters: {
|
|
605
612
|
# "ParameterName" => ["ParameterValue"],
|
|
606
613
|
# },
|
|
614
|
+
# automation_target_parameter_name: "AutomationTargetParameterName",
|
|
607
615
|
# document_version: "DocumentVersion",
|
|
608
616
|
# targets: [
|
|
609
617
|
# {
|
|
@@ -644,6 +652,7 @@ module Aws::SSM
|
|
|
644
652
|
# resp.successful[0].overview.association_status_aggregated_count #=> Hash
|
|
645
653
|
# resp.successful[0].overview.association_status_aggregated_count["StatusName"] #=> Integer
|
|
646
654
|
# resp.successful[0].document_version #=> String
|
|
655
|
+
# resp.successful[0].automation_target_parameter_name #=> String
|
|
647
656
|
# resp.successful[0].parameters #=> Hash
|
|
648
657
|
# resp.successful[0].parameters["ParameterName"] #=> Array
|
|
649
658
|
# resp.successful[0].parameters["ParameterName"][0] #=> String
|
|
@@ -668,6 +677,7 @@ module Aws::SSM
|
|
|
668
677
|
# resp.failed[0].entry.parameters #=> Hash
|
|
669
678
|
# resp.failed[0].entry.parameters["ParameterName"] #=> Array
|
|
670
679
|
# resp.failed[0].entry.parameters["ParameterName"][0] #=> String
|
|
680
|
+
# resp.failed[0].entry.automation_target_parameter_name #=> String
|
|
671
681
|
# resp.failed[0].entry.document_version #=> String
|
|
672
682
|
# resp.failed[0].entry.targets #=> Array
|
|
673
683
|
# resp.failed[0].entry.targets[0].key #=> String
|
|
@@ -1634,6 +1644,7 @@ module Aws::SSM
|
|
|
1634
1644
|
# resp.association_description.overview.association_status_aggregated_count #=> Hash
|
|
1635
1645
|
# resp.association_description.overview.association_status_aggregated_count["StatusName"] #=> Integer
|
|
1636
1646
|
# resp.association_description.document_version #=> String
|
|
1647
|
+
# resp.association_description.automation_target_parameter_name #=> String
|
|
1637
1648
|
# resp.association_description.parameters #=> Hash
|
|
1638
1649
|
# resp.association_description.parameters["ParameterName"] #=> Array
|
|
1639
1650
|
# resp.association_description.parameters["ParameterName"][0] #=> String
|
|
@@ -6734,6 +6745,11 @@ module Aws::SSM
|
|
|
6734
6745
|
# ensure that this request succeeds, either specify `$LATEST`, or omit
|
|
6735
6746
|
# this parameter.
|
|
6736
6747
|
#
|
|
6748
|
+
# @option params [String] :automation_target_parameter_name
|
|
6749
|
+
# Specify the target for the association. This target is required for
|
|
6750
|
+
# associations that use an Automation document and target resources by
|
|
6751
|
+
# using rate controls.
|
|
6752
|
+
#
|
|
6737
6753
|
# @option params [String] :max_errors
|
|
6738
6754
|
# The number of errors that are allowed before the system stops sending
|
|
6739
6755
|
# requests to run the association on additional targets. You can specify
|
|
@@ -6795,6 +6811,7 @@ module Aws::SSM
|
|
|
6795
6811
|
# ],
|
|
6796
6812
|
# association_name: "AssociationName",
|
|
6797
6813
|
# association_version: "AssociationVersion",
|
|
6814
|
+
# automation_target_parameter_name: "AutomationTargetParameterName",
|
|
6798
6815
|
# max_errors: "MaxErrors",
|
|
6799
6816
|
# max_concurrency: "MaxConcurrency",
|
|
6800
6817
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
|
@@ -6816,6 +6833,7 @@ module Aws::SSM
|
|
|
6816
6833
|
# resp.association_description.overview.association_status_aggregated_count #=> Hash
|
|
6817
6834
|
# resp.association_description.overview.association_status_aggregated_count["StatusName"] #=> Integer
|
|
6818
6835
|
# resp.association_description.document_version #=> String
|
|
6836
|
+
# resp.association_description.automation_target_parameter_name #=> String
|
|
6819
6837
|
# resp.association_description.parameters #=> Hash
|
|
6820
6838
|
# resp.association_description.parameters["ParameterName"] #=> Array
|
|
6821
6839
|
# resp.association_description.parameters["ParameterName"][0] #=> String
|
|
@@ -6889,6 +6907,7 @@ module Aws::SSM
|
|
|
6889
6907
|
# resp.association_description.overview.association_status_aggregated_count #=> Hash
|
|
6890
6908
|
# resp.association_description.overview.association_status_aggregated_count["StatusName"] #=> Integer
|
|
6891
6909
|
# resp.association_description.document_version #=> String
|
|
6910
|
+
# resp.association_description.automation_target_parameter_name #=> String
|
|
6892
6911
|
# resp.association_description.parameters #=> Hash
|
|
6893
6912
|
# resp.association_description.parameters["ParameterName"] #=> Array
|
|
6894
6913
|
# resp.association_description.parameters["ParameterName"][0] #=> String
|
|
@@ -7726,7 +7745,7 @@ module Aws::SSM
|
|
|
7726
7745
|
params: params,
|
|
7727
7746
|
config: config)
|
|
7728
7747
|
context[:gem_name] = 'aws-sdk-ssm'
|
|
7729
|
-
context[:gem_version] = '1.
|
|
7748
|
+
context[:gem_version] = '1.35.0'
|
|
7730
7749
|
Seahorse::Client::Request.new(handlers, context)
|
|
7731
7750
|
end
|
|
7732
7751
|
|
|
@@ -103,6 +103,7 @@ module Aws::SSM
|
|
|
103
103
|
AutomationParameterValue = Shapes::StringShape.new(name: 'AutomationParameterValue')
|
|
104
104
|
AutomationParameterValueList = Shapes::ListShape.new(name: 'AutomationParameterValueList')
|
|
105
105
|
AutomationStepNotFoundException = Shapes::StructureShape.new(name: 'AutomationStepNotFoundException')
|
|
106
|
+
AutomationTargetParameterName = Shapes::StringShape.new(name: 'AutomationTargetParameterName')
|
|
106
107
|
AutomationType = Shapes::StringShape.new(name: 'AutomationType')
|
|
107
108
|
BaselineDescription = Shapes::StringShape.new(name: 'BaselineDescription')
|
|
108
109
|
BaselineId = Shapes::StringShape.new(name: 'BaselineId')
|
|
@@ -949,6 +950,7 @@ module Aws::SSM
|
|
|
949
950
|
AssociationDescription.add_member(:status, Shapes::ShapeRef.new(shape: AssociationStatus, location_name: "Status"))
|
|
950
951
|
AssociationDescription.add_member(:overview, Shapes::ShapeRef.new(shape: AssociationOverview, location_name: "Overview"))
|
|
951
952
|
AssociationDescription.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion"))
|
|
953
|
+
AssociationDescription.add_member(:automation_target_parameter_name, Shapes::ShapeRef.new(shape: AutomationTargetParameterName, location_name: "AutomationTargetParameterName"))
|
|
952
954
|
AssociationDescription.add_member(:parameters, Shapes::ShapeRef.new(shape: Parameters, location_name: "Parameters"))
|
|
953
955
|
AssociationDescription.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, location_name: "AssociationId"))
|
|
954
956
|
AssociationDescription.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets"))
|
|
@@ -1289,6 +1291,7 @@ module Aws::SSM
|
|
|
1289
1291
|
CreateAssociationBatchRequestEntry.add_member(:name, Shapes::ShapeRef.new(shape: DocumentName, required: true, location_name: "Name"))
|
|
1290
1292
|
CreateAssociationBatchRequestEntry.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
|
1291
1293
|
CreateAssociationBatchRequestEntry.add_member(:parameters, Shapes::ShapeRef.new(shape: Parameters, location_name: "Parameters"))
|
|
1294
|
+
CreateAssociationBatchRequestEntry.add_member(:automation_target_parameter_name, Shapes::ShapeRef.new(shape: AutomationTargetParameterName, location_name: "AutomationTargetParameterName"))
|
|
1292
1295
|
CreateAssociationBatchRequestEntry.add_member(:document_version, Shapes::ShapeRef.new(shape: DocumentVersion, location_name: "DocumentVersion"))
|
|
1293
1296
|
CreateAssociationBatchRequestEntry.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets"))
|
|
1294
1297
|
CreateAssociationBatchRequestEntry.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: ScheduleExpression, location_name: "ScheduleExpression"))
|
|
@@ -1311,6 +1314,7 @@ module Aws::SSM
|
|
|
1311
1314
|
CreateAssociationRequest.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: ScheduleExpression, location_name: "ScheduleExpression"))
|
|
1312
1315
|
CreateAssociationRequest.add_member(:output_location, Shapes::ShapeRef.new(shape: InstanceAssociationOutputLocation, location_name: "OutputLocation"))
|
|
1313
1316
|
CreateAssociationRequest.add_member(:association_name, Shapes::ShapeRef.new(shape: AssociationName, location_name: "AssociationName"))
|
|
1317
|
+
CreateAssociationRequest.add_member(:automation_target_parameter_name, Shapes::ShapeRef.new(shape: AutomationTargetParameterName, location_name: "AutomationTargetParameterName"))
|
|
1314
1318
|
CreateAssociationRequest.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
|
|
1315
1319
|
CreateAssociationRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
|
1316
1320
|
CreateAssociationRequest.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
|
@@ -3082,6 +3086,7 @@ module Aws::SSM
|
|
|
3082
3086
|
UpdateAssociationRequest.add_member(:targets, Shapes::ShapeRef.new(shape: Targets, location_name: "Targets"))
|
|
3083
3087
|
UpdateAssociationRequest.add_member(:association_name, Shapes::ShapeRef.new(shape: AssociationName, location_name: "AssociationName"))
|
|
3084
3088
|
UpdateAssociationRequest.add_member(:association_version, Shapes::ShapeRef.new(shape: AssociationVersion, location_name: "AssociationVersion"))
|
|
3089
|
+
UpdateAssociationRequest.add_member(:automation_target_parameter_name, Shapes::ShapeRef.new(shape: AutomationTargetParameterName, location_name: "AutomationTargetParameterName"))
|
|
3085
3090
|
UpdateAssociationRequest.add_member(:max_errors, Shapes::ShapeRef.new(shape: MaxErrors, location_name: "MaxErrors"))
|
|
3086
3091
|
UpdateAssociationRequest.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: MaxConcurrency, location_name: "MaxConcurrency"))
|
|
3087
3092
|
UpdateAssociationRequest.add_member(:compliance_severity, Shapes::ShapeRef.new(shape: AssociationComplianceSeverity, location_name: "ComplianceSeverity"))
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
|
@@ -231,6 +231,12 @@ module Aws::SSM
|
|
|
231
231
|
# The document version.
|
|
232
232
|
# @return [String]
|
|
233
233
|
#
|
|
234
|
+
# @!attribute [rw] automation_target_parameter_name
|
|
235
|
+
# Specify the target for the association. This target is required for
|
|
236
|
+
# associations that use an Automation document and target resources by
|
|
237
|
+
# using rate controls.
|
|
238
|
+
# @return [String]
|
|
239
|
+
#
|
|
234
240
|
# @!attribute [rw] parameters
|
|
235
241
|
# A description of the parameters for a document.
|
|
236
242
|
# @return [Hash<String,Array<String>>]
|
|
@@ -311,6 +317,7 @@ module Aws::SSM
|
|
|
311
317
|
:status,
|
|
312
318
|
:overview,
|
|
313
319
|
:document_version,
|
|
320
|
+
:automation_target_parameter_name,
|
|
314
321
|
:parameters,
|
|
315
322
|
:association_id,
|
|
316
323
|
:targets,
|
|
@@ -716,9 +723,10 @@ module Aws::SSM
|
|
|
716
723
|
include Aws::Structure
|
|
717
724
|
end
|
|
718
725
|
|
|
719
|
-
# An attribute of an attachment, such as the attachment name
|
|
726
|
+
# An attribute of an attachment, such as the attachment name.
|
|
720
727
|
#
|
|
721
728
|
# @!attribute [rw] name
|
|
729
|
+
# The name of the attachment.
|
|
722
730
|
# @return [String]
|
|
723
731
|
#
|
|
724
732
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/AttachmentInformation AWS API Documentation
|
|
@@ -1026,8 +1034,8 @@ module Aws::SSM
|
|
|
1026
1034
|
# @return [String]
|
|
1027
1035
|
#
|
|
1028
1036
|
# @!attribute [rw] automation_type
|
|
1029
|
-
# Use this filter with
|
|
1030
|
-
# Local
|
|
1037
|
+
# Use this filter with DescribeAutomationExecutions. Specify either
|
|
1038
|
+
# Local or CrossAccount. CrossAccount is an Automation that executes
|
|
1031
1039
|
# in multiple AWS Regions and accounts. For more information, see
|
|
1032
1040
|
# [Concurrently Executing Automations in Multiple AWS Regions and
|
|
1033
1041
|
# Accounts][1] in the *AWS Systems Manager User Guide*.
|
|
@@ -2050,6 +2058,7 @@ module Aws::SSM
|
|
|
2050
2058
|
# parameters: {
|
|
2051
2059
|
# "ParameterName" => ["ParameterValue"],
|
|
2052
2060
|
# },
|
|
2061
|
+
# automation_target_parameter_name: "AutomationTargetParameterName",
|
|
2053
2062
|
# document_version: "DocumentVersion",
|
|
2054
2063
|
# targets: [
|
|
2055
2064
|
# {
|
|
@@ -2096,6 +2105,7 @@ module Aws::SSM
|
|
|
2096
2105
|
# parameters: {
|
|
2097
2106
|
# "ParameterName" => ["ParameterValue"],
|
|
2098
2107
|
# },
|
|
2108
|
+
# automation_target_parameter_name: "AutomationTargetParameterName",
|
|
2099
2109
|
# document_version: "DocumentVersion",
|
|
2100
2110
|
# targets: [
|
|
2101
2111
|
# {
|
|
@@ -2129,6 +2139,12 @@ module Aws::SSM
|
|
|
2129
2139
|
# A description of the parameters for a document.
|
|
2130
2140
|
# @return [Hash<String,Array<String>>]
|
|
2131
2141
|
#
|
|
2142
|
+
# @!attribute [rw] automation_target_parameter_name
|
|
2143
|
+
# Specify the target for the association. This target is required for
|
|
2144
|
+
# associations that use an Automation document and target resources by
|
|
2145
|
+
# using rate controls.
|
|
2146
|
+
# @return [String]
|
|
2147
|
+
#
|
|
2132
2148
|
# @!attribute [rw] document_version
|
|
2133
2149
|
# The document version.
|
|
2134
2150
|
# @return [String]
|
|
@@ -2192,6 +2208,7 @@ module Aws::SSM
|
|
|
2192
2208
|
:name,
|
|
2193
2209
|
:instance_id,
|
|
2194
2210
|
:parameters,
|
|
2211
|
+
:automation_target_parameter_name,
|
|
2195
2212
|
:document_version,
|
|
2196
2213
|
:targets,
|
|
2197
2214
|
:schedule_expression,
|
|
@@ -2244,6 +2261,7 @@ module Aws::SSM
|
|
|
2244
2261
|
# },
|
|
2245
2262
|
# },
|
|
2246
2263
|
# association_name: "AssociationName",
|
|
2264
|
+
# automation_target_parameter_name: "AutomationTargetParameterName",
|
|
2247
2265
|
# max_errors: "MaxErrors",
|
|
2248
2266
|
# max_concurrency: "MaxConcurrency",
|
|
2249
2267
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
|
@@ -2284,6 +2302,12 @@ module Aws::SSM
|
|
|
2284
2302
|
# Specify a descriptive name for the association.
|
|
2285
2303
|
# @return [String]
|
|
2286
2304
|
#
|
|
2305
|
+
# @!attribute [rw] automation_target_parameter_name
|
|
2306
|
+
# Specify the target for the association. This target is required for
|
|
2307
|
+
# associations that use an Automation document and target resources by
|
|
2308
|
+
# using rate controls.
|
|
2309
|
+
# @return [String]
|
|
2310
|
+
#
|
|
2287
2311
|
# @!attribute [rw] max_errors
|
|
2288
2312
|
# The number of errors that are allowed before the system stops
|
|
2289
2313
|
# sending requests to run the association on additional targets. You
|
|
@@ -2330,6 +2354,7 @@ module Aws::SSM
|
|
|
2330
2354
|
:schedule_expression,
|
|
2331
2355
|
:output_location,
|
|
2332
2356
|
:association_name,
|
|
2357
|
+
:automation_target_parameter_name,
|
|
2333
2358
|
:max_errors,
|
|
2334
2359
|
:max_concurrency,
|
|
2335
2360
|
:compliance_severity)
|
|
@@ -10704,9 +10729,9 @@ module Aws::SSM
|
|
|
10704
10729
|
# @!attribute [rw] configuration
|
|
10705
10730
|
# The value of the yum repo configuration. For example:
|
|
10706
10731
|
#
|
|
10707
|
-
# `
|
|
10732
|
+
# `[main]`
|
|
10708
10733
|
#
|
|
10709
|
-
#
|
|
10734
|
+
# `cachedir=/var/cache/yum/$basesearch$releasever`
|
|
10710
10735
|
#
|
|
10711
10736
|
# `keepcache=0`
|
|
10712
10737
|
#
|
|
@@ -12816,6 +12841,7 @@ module Aws::SSM
|
|
|
12816
12841
|
# ],
|
|
12817
12842
|
# association_name: "AssociationName",
|
|
12818
12843
|
# association_version: "AssociationVersion",
|
|
12844
|
+
# automation_target_parameter_name: "AutomationTargetParameterName",
|
|
12819
12845
|
# max_errors: "MaxErrors",
|
|
12820
12846
|
# max_concurrency: "MaxConcurrency",
|
|
12821
12847
|
# compliance_severity: "CRITICAL", # accepts CRITICAL, HIGH, MEDIUM, LOW, UNSPECIFIED
|
|
@@ -12864,6 +12890,12 @@ module Aws::SSM
|
|
|
12864
12890
|
# or omit this parameter.
|
|
12865
12891
|
# @return [String]
|
|
12866
12892
|
#
|
|
12893
|
+
# @!attribute [rw] automation_target_parameter_name
|
|
12894
|
+
# Specify the target for the association. This target is required for
|
|
12895
|
+
# associations that use an Automation document and target resources by
|
|
12896
|
+
# using rate controls.
|
|
12897
|
+
# @return [String]
|
|
12898
|
+
#
|
|
12867
12899
|
# @!attribute [rw] max_errors
|
|
12868
12900
|
# The number of errors that are allowed before the system stops
|
|
12869
12901
|
# sending requests to run the association on additional targets. You
|
|
@@ -12911,6 +12943,7 @@ module Aws::SSM
|
|
|
12911
12943
|
:targets,
|
|
12912
12944
|
:association_name,
|
|
12913
12945
|
:association_version,
|
|
12946
|
+
:automation_target_parameter_name,
|
|
12914
12947
|
:max_errors,
|
|
12915
12948
|
:max_concurrency,
|
|
12916
12949
|
:compliance_severity)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ssm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.35.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:
|
|
11
|
+
date: 2019-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|