aws-sdk-emr 1.119.0 → 1.120.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-emr/client.rb +22 -1
- data/lib/aws-sdk-emr/client_api.rb +18 -0
- data/lib/aws-sdk-emr/types.rb +80 -15
- data/lib/aws-sdk-emr.rb +1 -1
- data/sig/client.rbs +10 -1
- data/sig/types.rbs +16 -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: faaccb9fa6a7dedf3cbfc17ada2a401452971c73c79d63af0c63c67e13563915
|
|
4
|
+
data.tar.gz: d33ffc7b9c3c59c99c015bdcbcbb66b644ae6b854525920007f5417de3f9ac99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3419993ea69d767b03fb021a428c835758b2eca79a50e2b42ebac497bef0512937a0a0385ee350d876b295ba7bb47657f5357c73c79c991922b746825a396e2
|
|
7
|
+
data.tar.gz: 59a804e6b591c51298d067f6629ad38e777b42bab8a044ac3dd198a915050836d3947087a9a8acdf9e84a3beaaf593e7d3fe369678ea302e8c5bdf8bf9d52165
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.120.0
|
data/lib/aws-sdk-emr/client.rb
CHANGED
|
@@ -1375,6 +1375,13 @@ module Aws::EMR
|
|
|
1375
1375
|
# resp.cluster.ebs_root_volume_iops #=> Integer
|
|
1376
1376
|
# resp.cluster.ebs_root_volume_throughput #=> Integer
|
|
1377
1377
|
# resp.cluster.extended_support #=> Boolean
|
|
1378
|
+
# resp.cluster.monitoring_configuration.cloud_watch_log_configuration.enabled #=> Boolean
|
|
1379
|
+
# resp.cluster.monitoring_configuration.cloud_watch_log_configuration.log_group_name #=> String
|
|
1380
|
+
# resp.cluster.monitoring_configuration.cloud_watch_log_configuration.log_stream_name_prefix #=> String
|
|
1381
|
+
# resp.cluster.monitoring_configuration.cloud_watch_log_configuration.encryption_key_arn #=> String
|
|
1382
|
+
# resp.cluster.monitoring_configuration.cloud_watch_log_configuration.log_types #=> Hash
|
|
1383
|
+
# resp.cluster.monitoring_configuration.cloud_watch_log_configuration.log_types["XmlString"] #=> Array
|
|
1384
|
+
# resp.cluster.monitoring_configuration.cloud_watch_log_configuration.log_types["XmlString"][0] #=> String
|
|
1378
1385
|
#
|
|
1379
1386
|
#
|
|
1380
1387
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -3729,6 +3736,9 @@ module Aws::EMR
|
|
|
3729
3736
|
# @option params [Boolean] :extended_support
|
|
3730
3737
|
# Reserved.
|
|
3731
3738
|
#
|
|
3739
|
+
# @option params [Types::MonitoringConfiguration] :monitoring_configuration
|
|
3740
|
+
# Contains CloudWatch log configuration metadata and settings.
|
|
3741
|
+
#
|
|
3732
3742
|
# @return [Types::RunJobFlowOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3733
3743
|
#
|
|
3734
3744
|
# * {Types::RunJobFlowOutput#job_flow_id #job_flow_id} => String
|
|
@@ -4014,6 +4024,17 @@ module Aws::EMR
|
|
|
4014
4024
|
# ebs_root_volume_iops: 1,
|
|
4015
4025
|
# ebs_root_volume_throughput: 1,
|
|
4016
4026
|
# extended_support: false,
|
|
4027
|
+
# monitoring_configuration: {
|
|
4028
|
+
# cloud_watch_log_configuration: {
|
|
4029
|
+
# enabled: false, # required
|
|
4030
|
+
# log_group_name: "XmlString",
|
|
4031
|
+
# log_stream_name_prefix: "XmlString",
|
|
4032
|
+
# encryption_key_arn: "XmlString",
|
|
4033
|
+
# log_types: {
|
|
4034
|
+
# "XmlString" => ["XmlString"],
|
|
4035
|
+
# },
|
|
4036
|
+
# },
|
|
4037
|
+
# },
|
|
4017
4038
|
# })
|
|
4018
4039
|
#
|
|
4019
4040
|
# @example Response structure
|
|
@@ -4514,7 +4535,7 @@ module Aws::EMR
|
|
|
4514
4535
|
tracer: tracer
|
|
4515
4536
|
)
|
|
4516
4537
|
context[:gem_name] = 'aws-sdk-emr'
|
|
4517
|
-
context[:gem_version] = '1.
|
|
4538
|
+
context[:gem_version] = '1.120.0'
|
|
4518
4539
|
Seahorse::Client::Request.new(handlers, context)
|
|
4519
4540
|
end
|
|
4520
4541
|
|
|
@@ -49,6 +49,7 @@ module Aws::EMR
|
|
|
49
49
|
CancelStepsOutput = Shapes::StructureShape.new(name: 'CancelStepsOutput')
|
|
50
50
|
CancelStepsRequestStatus = Shapes::StringShape.new(name: 'CancelStepsRequestStatus')
|
|
51
51
|
CloudWatchAlarmDefinition = Shapes::StructureShape.new(name: 'CloudWatchAlarmDefinition')
|
|
52
|
+
CloudWatchLogConfiguration = Shapes::StructureShape.new(name: 'CloudWatchLogConfiguration')
|
|
52
53
|
Cluster = Shapes::StructureShape.new(name: 'Cluster')
|
|
53
54
|
ClusterId = Shapes::StringShape.new(name: 'ClusterId')
|
|
54
55
|
ClusterState = Shapes::StringShape.new(name: 'ClusterState')
|
|
@@ -221,6 +222,7 @@ module Aws::EMR
|
|
|
221
222
|
ListStudiosOutput = Shapes::StructureShape.new(name: 'ListStudiosOutput')
|
|
222
223
|
ListSupportedInstanceTypesInput = Shapes::StructureShape.new(name: 'ListSupportedInstanceTypesInput')
|
|
223
224
|
ListSupportedInstanceTypesOutput = Shapes::StructureShape.new(name: 'ListSupportedInstanceTypesOutput')
|
|
225
|
+
LogTypesMap = Shapes::MapShape.new(name: 'LogTypesMap')
|
|
224
226
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
|
225
227
|
ManagedScalingPolicy = Shapes::StructureShape.new(name: 'ManagedScalingPolicy')
|
|
226
228
|
Marker = Shapes::StringShape.new(name: 'Marker')
|
|
@@ -232,6 +234,7 @@ module Aws::EMR
|
|
|
232
234
|
ModifyClusterOutput = Shapes::StructureShape.new(name: 'ModifyClusterOutput')
|
|
233
235
|
ModifyInstanceFleetInput = Shapes::StructureShape.new(name: 'ModifyInstanceFleetInput')
|
|
234
236
|
ModifyInstanceGroupsInput = Shapes::StructureShape.new(name: 'ModifyInstanceGroupsInput')
|
|
237
|
+
MonitoringConfiguration = Shapes::StructureShape.new(name: 'MonitoringConfiguration')
|
|
235
238
|
NewSupportedProductsList = Shapes::ListShape.new(name: 'NewSupportedProductsList')
|
|
236
239
|
NonNegativeDouble = Shapes::FloatShape.new(name: 'NonNegativeDouble')
|
|
237
240
|
NotebookExecution = Shapes::StructureShape.new(name: 'NotebookExecution')
|
|
@@ -467,6 +470,13 @@ module Aws::EMR
|
|
|
467
470
|
CloudWatchAlarmDefinition.add_member(:dimensions, Shapes::ShapeRef.new(shape: MetricDimensionList, location_name: "Dimensions"))
|
|
468
471
|
CloudWatchAlarmDefinition.struct_class = Types::CloudWatchAlarmDefinition
|
|
469
472
|
|
|
473
|
+
CloudWatchLogConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "Enabled"))
|
|
474
|
+
CloudWatchLogConfiguration.add_member(:log_group_name, Shapes::ShapeRef.new(shape: XmlString, location_name: "LogGroupName"))
|
|
475
|
+
CloudWatchLogConfiguration.add_member(:log_stream_name_prefix, Shapes::ShapeRef.new(shape: XmlString, location_name: "LogStreamNamePrefix"))
|
|
476
|
+
CloudWatchLogConfiguration.add_member(:encryption_key_arn, Shapes::ShapeRef.new(shape: XmlString, location_name: "EncryptionKeyArn"))
|
|
477
|
+
CloudWatchLogConfiguration.add_member(:log_types, Shapes::ShapeRef.new(shape: LogTypesMap, location_name: "LogTypes"))
|
|
478
|
+
CloudWatchLogConfiguration.struct_class = Types::CloudWatchLogConfiguration
|
|
479
|
+
|
|
470
480
|
Cluster.add_member(:id, Shapes::ShapeRef.new(shape: ClusterId, location_name: "Id"))
|
|
471
481
|
Cluster.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
|
472
482
|
Cluster.add_member(:status, Shapes::ShapeRef.new(shape: ClusterStatus, location_name: "Status"))
|
|
@@ -502,6 +512,7 @@ module Aws::EMR
|
|
|
502
512
|
Cluster.add_member(:ebs_root_volume_iops, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeIops"))
|
|
503
513
|
Cluster.add_member(:ebs_root_volume_throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeThroughput"))
|
|
504
514
|
Cluster.add_member(:extended_support, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ExtendedSupport"))
|
|
515
|
+
Cluster.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "MonitoringConfiguration"))
|
|
505
516
|
Cluster.struct_class = Types::Cluster
|
|
506
517
|
|
|
507
518
|
ClusterStateChangeReason.add_member(:code, Shapes::ShapeRef.new(shape: ClusterStateChangeReasonCode, location_name: "Code"))
|
|
@@ -1213,6 +1224,9 @@ module Aws::EMR
|
|
|
1213
1224
|
ListSupportedInstanceTypesOutput.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
|
1214
1225
|
ListSupportedInstanceTypesOutput.struct_class = Types::ListSupportedInstanceTypesOutput
|
|
1215
1226
|
|
|
1227
|
+
LogTypesMap.key = Shapes::ShapeRef.new(shape: XmlString)
|
|
1228
|
+
LogTypesMap.value = Shapes::ShapeRef.new(shape: XmlStringList)
|
|
1229
|
+
|
|
1216
1230
|
ManagedScalingPolicy.add_member(:compute_limits, Shapes::ShapeRef.new(shape: ComputeLimits, location_name: "ComputeLimits"))
|
|
1217
1231
|
ManagedScalingPolicy.add_member(:utilization_performance_index, Shapes::ShapeRef.new(shape: UtilizationPerformanceIndexInteger, location_name: "UtilizationPerformanceIndex"))
|
|
1218
1232
|
ManagedScalingPolicy.add_member(:scaling_strategy, Shapes::ShapeRef.new(shape: ScalingStrategy, location_name: "ScalingStrategy"))
|
|
@@ -1241,6 +1255,9 @@ module Aws::EMR
|
|
|
1241
1255
|
ModifyInstanceGroupsInput.add_member(:instance_groups, Shapes::ShapeRef.new(shape: InstanceGroupModifyConfigList, location_name: "InstanceGroups"))
|
|
1242
1256
|
ModifyInstanceGroupsInput.struct_class = Types::ModifyInstanceGroupsInput
|
|
1243
1257
|
|
|
1258
|
+
MonitoringConfiguration.add_member(:cloud_watch_log_configuration, Shapes::ShapeRef.new(shape: CloudWatchLogConfiguration, location_name: "CloudWatchLogConfiguration"))
|
|
1259
|
+
MonitoringConfiguration.struct_class = Types::MonitoringConfiguration
|
|
1260
|
+
|
|
1244
1261
|
NewSupportedProductsList.member = Shapes::ShapeRef.new(shape: SupportedProductConfig)
|
|
1245
1262
|
|
|
1246
1263
|
NotebookExecution.add_member(:notebook_execution_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "NotebookExecutionId"))
|
|
@@ -1423,6 +1440,7 @@ module Aws::EMR
|
|
|
1423
1440
|
RunJobFlowInput.add_member(:ebs_root_volume_iops, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeIops"))
|
|
1424
1441
|
RunJobFlowInput.add_member(:ebs_root_volume_throughput, Shapes::ShapeRef.new(shape: Integer, location_name: "EbsRootVolumeThroughput"))
|
|
1425
1442
|
RunJobFlowInput.add_member(:extended_support, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "ExtendedSupport"))
|
|
1443
|
+
RunJobFlowInput.add_member(:monitoring_configuration, Shapes::ShapeRef.new(shape: MonitoringConfiguration, location_name: "MonitoringConfiguration"))
|
|
1426
1444
|
RunJobFlowInput.struct_class = Types::RunJobFlowInput
|
|
1427
1445
|
|
|
1428
1446
|
RunJobFlowOutput.add_member(:job_flow_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "JobFlowId"))
|
data/lib/aws-sdk-emr/types.rb
CHANGED
|
@@ -565,6 +565,44 @@ module Aws::EMR
|
|
|
565
565
|
include Aws::Structure
|
|
566
566
|
end
|
|
567
567
|
|
|
568
|
+
# Holds CloudWatch log configuration settings and metadata that specify
|
|
569
|
+
# settings like log files to monitor and where to send them.
|
|
570
|
+
#
|
|
571
|
+
# @!attribute [rw] enabled
|
|
572
|
+
# Specifies if CloudWatch logging is enabled.
|
|
573
|
+
# @return [Boolean]
|
|
574
|
+
#
|
|
575
|
+
# @!attribute [rw] log_group_name
|
|
576
|
+
# The name of the CloudWatch log group where logs are published.
|
|
577
|
+
# @return [String]
|
|
578
|
+
#
|
|
579
|
+
# @!attribute [rw] log_stream_name_prefix
|
|
580
|
+
# The prefix of the log stream name.
|
|
581
|
+
# @return [String]
|
|
582
|
+
#
|
|
583
|
+
# @!attribute [rw] encryption_key_arn
|
|
584
|
+
# The ARN of the encryption key used to encrypt the logs.
|
|
585
|
+
# @return [String]
|
|
586
|
+
#
|
|
587
|
+
# @!attribute [rw] log_types
|
|
588
|
+
# A map of log types to file names for publishing logs to the standard
|
|
589
|
+
# output or standard error streams for CloudWatch. Valid log types
|
|
590
|
+
# include STEP\_LOGS, SPARK\_DRIVER, and SPARK\_EXECUTOR. Valid file
|
|
591
|
+
# names for each type include STDOUT and STDERR.
|
|
592
|
+
# @return [Hash<String,Array<String>>]
|
|
593
|
+
#
|
|
594
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CloudWatchLogConfiguration AWS API Documentation
|
|
595
|
+
#
|
|
596
|
+
class CloudWatchLogConfiguration < Struct.new(
|
|
597
|
+
:enabled,
|
|
598
|
+
:log_group_name,
|
|
599
|
+
:log_stream_name_prefix,
|
|
600
|
+
:encryption_key_arn,
|
|
601
|
+
:log_types)
|
|
602
|
+
SENSITIVE = []
|
|
603
|
+
include Aws::Structure
|
|
604
|
+
end
|
|
605
|
+
|
|
568
606
|
# The detailed description of the cluster.
|
|
569
607
|
#
|
|
570
608
|
# @!attribute [rw] id
|
|
@@ -798,6 +836,10 @@ module Aws::EMR
|
|
|
798
836
|
# Reserved.
|
|
799
837
|
# @return [Boolean]
|
|
800
838
|
#
|
|
839
|
+
# @!attribute [rw] monitoring_configuration
|
|
840
|
+
# Contains Cloudwatch log configuration metadata and settings.
|
|
841
|
+
# @return [Types::MonitoringConfiguration]
|
|
842
|
+
#
|
|
801
843
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/Cluster AWS API Documentation
|
|
802
844
|
#
|
|
803
845
|
class Cluster < Struct.new(
|
|
@@ -835,7 +877,8 @@ module Aws::EMR
|
|
|
835
877
|
:os_release_label,
|
|
836
878
|
:ebs_root_volume_iops,
|
|
837
879
|
:ebs_root_volume_throughput,
|
|
838
|
-
:extended_support
|
|
880
|
+
:extended_support,
|
|
881
|
+
:monitoring_configuration)
|
|
839
882
|
SENSITIVE = []
|
|
840
883
|
include Aws::Structure
|
|
841
884
|
end
|
|
@@ -2939,10 +2982,10 @@ module Aws::EMR
|
|
|
2939
2982
|
# @return [String]
|
|
2940
2983
|
#
|
|
2941
2984
|
# @!attribute [rw] bid_price
|
|
2942
|
-
#
|
|
2943
|
-
#
|
|
2944
|
-
#
|
|
2945
|
-
#
|
|
2985
|
+
# The bid price for each Amazon EC2 Spot Instance type as defined by
|
|
2986
|
+
# `InstanceType`. Expressed in USD. If neither `BidPrice` nor
|
|
2987
|
+
# `BidPriceAsPercentageOfOnDemandPrice` is provided,
|
|
2988
|
+
# `BidPriceAsPercentageOfOnDemandPrice` defaults to 100%.
|
|
2946
2989
|
# @return [String]
|
|
2947
2990
|
#
|
|
2948
2991
|
# @!attribute [rw] instance_type
|
|
@@ -3054,10 +3097,10 @@ module Aws::EMR
|
|
|
3054
3097
|
# @return [String]
|
|
3055
3098
|
#
|
|
3056
3099
|
# @!attribute [rw] bid_price
|
|
3057
|
-
#
|
|
3058
|
-
#
|
|
3059
|
-
#
|
|
3060
|
-
#
|
|
3100
|
+
# The bid price for each Amazon EC2 Spot Instance type as defined by
|
|
3101
|
+
# `InstanceType`. Expressed in USD. If neither `BidPrice` nor
|
|
3102
|
+
# `BidPriceAsPercentageOfOnDemandPrice` is provided,
|
|
3103
|
+
# `BidPriceAsPercentageOfOnDemandPrice` defaults to 100%.
|
|
3061
3104
|
# @return [String]
|
|
3062
3105
|
#
|
|
3063
3106
|
# @!attribute [rw] instance_type
|
|
@@ -3133,10 +3176,10 @@ module Aws::EMR
|
|
|
3133
3176
|
# @return [String]
|
|
3134
3177
|
#
|
|
3135
3178
|
# @!attribute [rw] bid_price
|
|
3136
|
-
#
|
|
3137
|
-
#
|
|
3138
|
-
#
|
|
3139
|
-
#
|
|
3179
|
+
# The bid price for each Amazon EC2 Spot Instance type as defined by
|
|
3180
|
+
# `InstanceType`. Expressed in USD. If neither `BidPrice` nor
|
|
3181
|
+
# `BidPriceAsPercentageOfOnDemandPrice` is provided,
|
|
3182
|
+
# `BidPriceAsPercentageOfOnDemandPrice` defaults to 100%.
|
|
3140
3183
|
# @return [String]
|
|
3141
3184
|
#
|
|
3142
3185
|
# @!attribute [rw] instance_type
|
|
@@ -3511,7 +3554,9 @@ module Aws::EMR
|
|
|
3511
3554
|
#
|
|
3512
3555
|
# @!attribute [rw] bid_price
|
|
3513
3556
|
# The bid price for each Amazon EC2 Spot Instance type as defined by
|
|
3514
|
-
# `InstanceType`. Expressed in USD.
|
|
3557
|
+
# `InstanceType`. Expressed in USD. If neither `BidPrice` nor
|
|
3558
|
+
# `BidPriceAsPercentageOfOnDemandPrice` is provided,
|
|
3559
|
+
# `BidPriceAsPercentageOfOnDemandPrice` defaults to 100%.
|
|
3515
3560
|
# @return [String]
|
|
3516
3561
|
#
|
|
3517
3562
|
# @!attribute [rw] bid_price_as_percentage_of_on_demand_price
|
|
@@ -4800,6 +4845,21 @@ module Aws::EMR
|
|
|
4800
4845
|
include Aws::Structure
|
|
4801
4846
|
end
|
|
4802
4847
|
|
|
4848
|
+
# Contains CloudWatch log configuration metadata and settings.
|
|
4849
|
+
#
|
|
4850
|
+
# @!attribute [rw] cloud_watch_log_configuration
|
|
4851
|
+
# CloudWatch log configuration settings and metadata that specify
|
|
4852
|
+
# settings like log files to monitor and where to send them.
|
|
4853
|
+
# @return [Types::CloudWatchLogConfiguration]
|
|
4854
|
+
#
|
|
4855
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/MonitoringConfiguration AWS API Documentation
|
|
4856
|
+
#
|
|
4857
|
+
class MonitoringConfiguration < Struct.new(
|
|
4858
|
+
:cloud_watch_log_configuration)
|
|
4859
|
+
SENSITIVE = []
|
|
4860
|
+
include Aws::Structure
|
|
4861
|
+
end
|
|
4862
|
+
|
|
4803
4863
|
# A notebook execution. An execution is a specific instance that an
|
|
4804
4864
|
# Amazon EMR Notebook is run using the `StartNotebookExecution` action.
|
|
4805
4865
|
#
|
|
@@ -5906,6 +5966,10 @@ module Aws::EMR
|
|
|
5906
5966
|
# Reserved.
|
|
5907
5967
|
# @return [Boolean]
|
|
5908
5968
|
#
|
|
5969
|
+
# @!attribute [rw] monitoring_configuration
|
|
5970
|
+
# Contains CloudWatch log configuration metadata and settings.
|
|
5971
|
+
# @return [Types::MonitoringConfiguration]
|
|
5972
|
+
#
|
|
5909
5973
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/RunJobFlowInput AWS API Documentation
|
|
5910
5974
|
#
|
|
5911
5975
|
class RunJobFlowInput < Struct.new(
|
|
@@ -5940,7 +6004,8 @@ module Aws::EMR
|
|
|
5940
6004
|
:os_release_label,
|
|
5941
6005
|
:ebs_root_volume_iops,
|
|
5942
6006
|
:ebs_root_volume_throughput,
|
|
5943
|
-
:extended_support
|
|
6007
|
+
:extended_support,
|
|
6008
|
+
:monitoring_configuration)
|
|
5944
6009
|
SENSITIVE = []
|
|
5945
6010
|
include Aws::Structure
|
|
5946
6011
|
end
|
data/lib/aws-sdk-emr.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1241,7 +1241,16 @@ module Aws
|
|
|
1241
1241
|
?os_release_label: ::String,
|
|
1242
1242
|
?ebs_root_volume_iops: ::Integer,
|
|
1243
1243
|
?ebs_root_volume_throughput: ::Integer,
|
|
1244
|
-
?extended_support: bool
|
|
1244
|
+
?extended_support: bool,
|
|
1245
|
+
?monitoring_configuration: {
|
|
1246
|
+
cloud_watch_log_configuration: {
|
|
1247
|
+
enabled: bool,
|
|
1248
|
+
log_group_name: ::String?,
|
|
1249
|
+
log_stream_name_prefix: ::String?,
|
|
1250
|
+
encryption_key_arn: ::String?,
|
|
1251
|
+
log_types: Hash[::String, Array[::String]]?
|
|
1252
|
+
}?
|
|
1253
|
+
}
|
|
1245
1254
|
) -> _RunJobFlowResponseSuccess
|
|
1246
1255
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RunJobFlowResponseSuccess
|
|
1247
1256
|
|
data/sig/types.rbs
CHANGED
|
@@ -148,6 +148,15 @@ module Aws::EMR
|
|
|
148
148
|
SENSITIVE: []
|
|
149
149
|
end
|
|
150
150
|
|
|
151
|
+
class CloudWatchLogConfiguration
|
|
152
|
+
attr_accessor enabled: bool
|
|
153
|
+
attr_accessor log_group_name: ::String
|
|
154
|
+
attr_accessor log_stream_name_prefix: ::String
|
|
155
|
+
attr_accessor encryption_key_arn: ::String
|
|
156
|
+
attr_accessor log_types: ::Hash[::String, ::Array[::String]]
|
|
157
|
+
SENSITIVE: []
|
|
158
|
+
end
|
|
159
|
+
|
|
151
160
|
class Cluster
|
|
152
161
|
attr_accessor id: ::String
|
|
153
162
|
attr_accessor name: ::String
|
|
@@ -184,6 +193,7 @@ module Aws::EMR
|
|
|
184
193
|
attr_accessor ebs_root_volume_iops: ::Integer
|
|
185
194
|
attr_accessor ebs_root_volume_throughput: ::Integer
|
|
186
195
|
attr_accessor extended_support: bool
|
|
196
|
+
attr_accessor monitoring_configuration: Types::MonitoringConfiguration
|
|
187
197
|
SENSITIVE: []
|
|
188
198
|
end
|
|
189
199
|
|
|
@@ -1109,6 +1119,11 @@ module Aws::EMR
|
|
|
1109
1119
|
SENSITIVE: []
|
|
1110
1120
|
end
|
|
1111
1121
|
|
|
1122
|
+
class MonitoringConfiguration
|
|
1123
|
+
attr_accessor cloud_watch_log_configuration: Types::CloudWatchLogConfiguration
|
|
1124
|
+
SENSITIVE: []
|
|
1125
|
+
end
|
|
1126
|
+
|
|
1112
1127
|
class NotebookExecution
|
|
1113
1128
|
attr_accessor notebook_execution_id: ::String
|
|
1114
1129
|
attr_accessor editor_id: ::String
|
|
@@ -1335,6 +1350,7 @@ module Aws::EMR
|
|
|
1335
1350
|
attr_accessor ebs_root_volume_iops: ::Integer
|
|
1336
1351
|
attr_accessor ebs_root_volume_throughput: ::Integer
|
|
1337
1352
|
attr_accessor extended_support: bool
|
|
1353
|
+
attr_accessor monitoring_configuration: Types::MonitoringConfiguration
|
|
1338
1354
|
SENSITIVE: []
|
|
1339
1355
|
end
|
|
1340
1356
|
|