aws-sdk-emr 1.109.0 → 1.110.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: 26cc87fb86170ce01a9ef92e976b6cfa3f52c10916fdce0cd7e5a9bc6e84789c
4
- data.tar.gz: 59c7fe9e4ad1ebc0d9d4b01e7e63385b9c51e4db533a84ccd57a17ed4e675af9
3
+ metadata.gz: 61a9b8385edfa46fe44efb7ed272a4dbdfcbfacda78eb1265cb8c836d5378de5
4
+ data.tar.gz: 899d6022ea894b9c9ed65e12a382abe43527fa7633c2a865ec2388e5b69fdf6d
5
5
  SHA512:
6
- metadata.gz: c84c151d4fdcace42cfb3978cebeb16d22847aa7400ab64fbeb8c35bf753781f8ce91da2e2b475c4f2c326cbc5ff1c654cab50323428c1aefe405ab17a549a49
7
- data.tar.gz: b8e965c59164e8b43f8937e686d5b80e6dea0adfd18b69adc331854b0fa466ed27d009dccd42713bfdc50ea10a8bf41cc61db712067f73bb87569df43d03d455
6
+ metadata.gz: 6af80b7f80c9bd12a61ce3bdf7a7f1f29ea0663f9efbb2f1cd7e044fae5bf92dc0922de834adffba8ad34b6742cfa7325629dd57fa6c445c0a6b0577c1fd9fb6
7
+ data.tar.gz: 6059d7de28bd55e01942aa97b28615611009ac2f91487043bb94e81a8f9137994c93c7e2a51e4764ef55c6d546376965da6af0c086b733e2974a376da6bcfa46
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.110.0 (2025-05-16)
5
+ ------------------
6
+
7
+ * Feature - Added APIs for managing Application UIs: Access Persistent (serverless) UIs via CreatePersistentAppUI DescribePersistentAppUI & GetPersistentAppUIPresignedURL, and Cluster-based UIs through GetOnClusterAppUIPresignedURL. Supports Yarn, Spark History, and TEZ interfaces.
8
+
4
9
  1.109.0 (2025-05-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.109.0
1
+ 1.110.0
@@ -878,6 +878,60 @@ module Aws::EMR
878
878
  req.send_request(options)
879
879
  end
880
880
 
881
+ # Creates a persistent application user interface.
882
+ #
883
+ # @option params [required, String] :target_resource_arn
884
+ # The unique Amazon Resource Name (ARN) of the target resource.
885
+ #
886
+ # @option params [Types::EMRContainersConfig] :emr_containers_config
887
+ # The EMR containers configuration.
888
+ #
889
+ # @option params [Array<Types::Tag>] :tags
890
+ # Tags for the persistent application user interface.
891
+ #
892
+ # @option params [String] :x_referer
893
+ # The cross reference for the persistent application user interface.
894
+ #
895
+ # @option params [String] :profiler_type
896
+ # The profiler type for the persistent application user interface. Valid
897
+ # values are SHS, TEZUI, or YTS.
898
+ #
899
+ # @return [Types::CreatePersistentAppUIOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
900
+ #
901
+ # * {Types::CreatePersistentAppUIOutput#persistent_app_ui_id #persistent_app_ui_id} => String
902
+ # * {Types::CreatePersistentAppUIOutput#runtime_role_enabled_cluster #runtime_role_enabled_cluster} => Boolean
903
+ #
904
+ # @example Request syntax with placeholder values
905
+ #
906
+ # resp = client.create_persistent_app_ui({
907
+ # target_resource_arn: "ArnType", # required
908
+ # emr_containers_config: {
909
+ # job_run_id: "XmlStringMaxLen256",
910
+ # },
911
+ # tags: [
912
+ # {
913
+ # key: "String",
914
+ # value: "String",
915
+ # },
916
+ # ],
917
+ # x_referer: "String",
918
+ # profiler_type: "SHS", # accepts SHS, TEZUI, YTS
919
+ # })
920
+ #
921
+ # @example Response structure
922
+ #
923
+ # resp.persistent_app_ui_id #=> String
924
+ # resp.runtime_role_enabled_cluster #=> Boolean
925
+ #
926
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CreatePersistentAppUI AWS API Documentation
927
+ #
928
+ # @overload create_persistent_app_ui(params = {})
929
+ # @param [Hash] params ({})
930
+ def create_persistent_app_ui(params = {}, options = {})
931
+ req = build_request(:create_persistent_app_ui, params)
932
+ req.send_request(options)
933
+ end
934
+
881
935
  # Creates a security configuration, which is stored in the service and
882
936
  # can be specified when a cluster is created.
883
937
  #
@@ -1511,6 +1565,44 @@ module Aws::EMR
1511
1565
  req.send_request(options)
1512
1566
  end
1513
1567
 
1568
+ # Describes a persistent application user interface.
1569
+ #
1570
+ # @option params [required, String] :persistent_app_ui_id
1571
+ # The identifier for the persistent application user interface.
1572
+ #
1573
+ # @return [Types::DescribePersistentAppUIOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1574
+ #
1575
+ # * {Types::DescribePersistentAppUIOutput#persistent_app_ui #persistent_app_ui} => Types::PersistentAppUI
1576
+ #
1577
+ # @example Request syntax with placeholder values
1578
+ #
1579
+ # resp = client.describe_persistent_app_ui({
1580
+ # persistent_app_ui_id: "XmlStringMaxLen256", # required
1581
+ # })
1582
+ #
1583
+ # @example Response structure
1584
+ #
1585
+ # resp.persistent_app_ui.persistent_app_ui_id #=> String
1586
+ # resp.persistent_app_ui.persistent_app_ui_type_list #=> Array
1587
+ # resp.persistent_app_ui.persistent_app_ui_type_list[0] #=> String, one of "SHS", "TEZ", "YTS"
1588
+ # resp.persistent_app_ui.persistent_app_ui_status #=> String
1589
+ # resp.persistent_app_ui.author_id #=> String
1590
+ # resp.persistent_app_ui.creation_time #=> Time
1591
+ # resp.persistent_app_ui.last_modified_time #=> Time
1592
+ # resp.persistent_app_ui.last_state_change_reason #=> String
1593
+ # resp.persistent_app_ui.tags #=> Array
1594
+ # resp.persistent_app_ui.tags[0].key #=> String
1595
+ # resp.persistent_app_ui.tags[0].value #=> String
1596
+ #
1597
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribePersistentAppUI AWS API Documentation
1598
+ #
1599
+ # @overload describe_persistent_app_ui(params = {})
1600
+ # @param [Hash] params ({})
1601
+ def describe_persistent_app_ui(params = {}, options = {})
1602
+ req = build_request(:describe_persistent_app_ui, params)
1603
+ req.send_request(options)
1604
+ end
1605
+
1514
1606
  # Provides Amazon EMR release label details, such as the releases
1515
1607
  # available the Region where the API request is run, and the available
1516
1608
  # applications for a specific Amazon EMR release label. Can also list
@@ -1837,6 +1929,107 @@ module Aws::EMR
1837
1929
  req.send_request(options)
1838
1930
  end
1839
1931
 
1932
+ # The presigned URL properties for the cluster's application user
1933
+ # interface.
1934
+ #
1935
+ # @option params [required, String] :cluster_id
1936
+ # The cluster ID associated with the cluster's application user
1937
+ # interface presigned URL.
1938
+ #
1939
+ # @option params [String] :on_cluster_app_ui_type
1940
+ # The application UI type associated with the cluster's application
1941
+ # user interface presigned URL.
1942
+ #
1943
+ # @option params [String] :application_id
1944
+ # The application ID associated with the cluster's application user
1945
+ # interface presigned URL.
1946
+ #
1947
+ # @option params [Boolean] :dry_run
1948
+ # Determines if the user interface presigned URL is for a dry run.
1949
+ #
1950
+ # @option params [String] :execution_role_arn
1951
+ # The execution role ARN associated with the cluster's application user
1952
+ # interface presigned URL.
1953
+ #
1954
+ # @return [Types::GetOnClusterAppUIPresignedURLOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1955
+ #
1956
+ # * {Types::GetOnClusterAppUIPresignedURLOutput#presigned_url_ready #presigned_url_ready} => Boolean
1957
+ # * {Types::GetOnClusterAppUIPresignedURLOutput#presigned_url #presigned_url} => String
1958
+ #
1959
+ # @example Request syntax with placeholder values
1960
+ #
1961
+ # resp = client.get_on_cluster_app_ui_presigned_url({
1962
+ # cluster_id: "XmlStringMaxLen256", # required
1963
+ # on_cluster_app_ui_type: "SparkHistoryServer", # accepts SparkHistoryServer, YarnTimelineService, TezUI, ApplicationMaster, JobHistoryServer, ResourceManager
1964
+ # application_id: "XmlStringMaxLen256",
1965
+ # dry_run: false,
1966
+ # execution_role_arn: "ArnType",
1967
+ # })
1968
+ #
1969
+ # @example Response structure
1970
+ #
1971
+ # resp.presigned_url_ready #=> Boolean
1972
+ # resp.presigned_url #=> String
1973
+ #
1974
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/GetOnClusterAppUIPresignedURL AWS API Documentation
1975
+ #
1976
+ # @overload get_on_cluster_app_ui_presigned_url(params = {})
1977
+ # @param [Hash] params ({})
1978
+ def get_on_cluster_app_ui_presigned_url(params = {}, options = {})
1979
+ req = build_request(:get_on_cluster_app_ui_presigned_url, params)
1980
+ req.send_request(options)
1981
+ end
1982
+
1983
+ # The presigned URL properties for the cluster's application user
1984
+ # interface.
1985
+ #
1986
+ # @option params [required, String] :persistent_app_ui_id
1987
+ # The persistent application user interface ID associated with the
1988
+ # presigned URL.
1989
+ #
1990
+ # @option params [String] :persistent_app_ui_type
1991
+ # The persistent application user interface type associated with the
1992
+ # presigned URL.
1993
+ #
1994
+ # @option params [String] :application_id
1995
+ # The application ID associated with the presigned URL.
1996
+ #
1997
+ # @option params [Boolean] :auth_proxy_call
1998
+ # A boolean that represents if the caller is an authentication proxy
1999
+ # call.
2000
+ #
2001
+ # @option params [String] :execution_role_arn
2002
+ # The execution role ARN associated with the presigned URL.
2003
+ #
2004
+ # @return [Types::GetPersistentAppUIPresignedURLOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2005
+ #
2006
+ # * {Types::GetPersistentAppUIPresignedURLOutput#presigned_url_ready #presigned_url_ready} => Boolean
2007
+ # * {Types::GetPersistentAppUIPresignedURLOutput#presigned_url #presigned_url} => String
2008
+ #
2009
+ # @example Request syntax with placeholder values
2010
+ #
2011
+ # resp = client.get_persistent_app_ui_presigned_url({
2012
+ # persistent_app_ui_id: "XmlStringMaxLen256", # required
2013
+ # persistent_app_ui_type: "SHS", # accepts SHS, TEZ, YTS
2014
+ # application_id: "XmlStringMaxLen256",
2015
+ # auth_proxy_call: false,
2016
+ # execution_role_arn: "ArnType",
2017
+ # })
2018
+ #
2019
+ # @example Response structure
2020
+ #
2021
+ # resp.presigned_url_ready #=> Boolean
2022
+ # resp.presigned_url #=> String
2023
+ #
2024
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/GetPersistentAppUIPresignedURL AWS API Documentation
2025
+ #
2026
+ # @overload get_persistent_app_ui_presigned_url(params = {})
2027
+ # @param [Hash] params ({})
2028
+ def get_persistent_app_ui_presigned_url(params = {}, options = {})
2029
+ req = build_request(:get_persistent_app_ui_presigned_url, params)
2030
+ req.send_request(options)
2031
+ end
2032
+
1840
2033
  # Fetches mapping details for the specified Amazon EMR Studio and
1841
2034
  # identity (user or group).
1842
2035
  #
@@ -4304,7 +4497,7 @@ module Aws::EMR
4304
4497
  tracer: tracer
4305
4498
  )
4306
4499
  context[:gem_name] = 'aws-sdk-emr'
4307
- context[:gem_version] = '1.109.0'
4500
+ context[:gem_version] = '1.110.0'
4308
4501
  Seahorse::Client::Request.new(handlers, context)
4309
4502
  end
4310
4503
 
@@ -66,6 +66,8 @@ module Aws::EMR
66
66
  ComputeLimitsUnitType = Shapes::StringShape.new(name: 'ComputeLimitsUnitType')
67
67
  Configuration = Shapes::StructureShape.new(name: 'Configuration')
68
68
  ConfigurationList = Shapes::ListShape.new(name: 'ConfigurationList')
69
+ CreatePersistentAppUIInput = Shapes::StructureShape.new(name: 'CreatePersistentAppUIInput')
70
+ CreatePersistentAppUIOutput = Shapes::StructureShape.new(name: 'CreatePersistentAppUIOutput')
69
71
  CreateSecurityConfigurationInput = Shapes::StructureShape.new(name: 'CreateSecurityConfigurationInput')
70
72
  CreateSecurityConfigurationOutput = Shapes::StructureShape.new(name: 'CreateSecurityConfigurationOutput')
71
73
  CreateStudioInput = Shapes::StructureShape.new(name: 'CreateStudioInput')
@@ -83,6 +85,8 @@ module Aws::EMR
83
85
  DescribeJobFlowsOutput = Shapes::StructureShape.new(name: 'DescribeJobFlowsOutput')
84
86
  DescribeNotebookExecutionInput = Shapes::StructureShape.new(name: 'DescribeNotebookExecutionInput')
85
87
  DescribeNotebookExecutionOutput = Shapes::StructureShape.new(name: 'DescribeNotebookExecutionOutput')
88
+ DescribePersistentAppUIInput = Shapes::StructureShape.new(name: 'DescribePersistentAppUIInput')
89
+ DescribePersistentAppUIOutput = Shapes::StructureShape.new(name: 'DescribePersistentAppUIOutput')
86
90
  DescribeReleaseLabelInput = Shapes::StructureShape.new(name: 'DescribeReleaseLabelInput')
87
91
  DescribeReleaseLabelOutput = Shapes::StructureShape.new(name: 'DescribeReleaseLabelOutput')
88
92
  DescribeSecurityConfigurationInput = Shapes::StructureShape.new(name: 'DescribeSecurityConfigurationInput')
@@ -93,6 +97,7 @@ module Aws::EMR
93
97
  DescribeStudioOutput = Shapes::StructureShape.new(name: 'DescribeStudioOutput')
94
98
  EC2InstanceIdsList = Shapes::ListShape.new(name: 'EC2InstanceIdsList')
95
99
  EC2InstanceIdsToTerminateList = Shapes::ListShape.new(name: 'EC2InstanceIdsToTerminateList')
100
+ EMRContainersConfig = Shapes::StructureShape.new(name: 'EMRContainersConfig')
96
101
  EbsBlockDevice = Shapes::StructureShape.new(name: 'EbsBlockDevice')
97
102
  EbsBlockDeviceConfig = Shapes::StructureShape.new(name: 'EbsBlockDeviceConfig')
98
103
  EbsBlockDeviceConfigList = Shapes::ListShape.new(name: 'EbsBlockDeviceConfigList')
@@ -119,6 +124,10 @@ module Aws::EMR
119
124
  GetClusterSessionCredentialsOutput = Shapes::StructureShape.new(name: 'GetClusterSessionCredentialsOutput')
120
125
  GetManagedScalingPolicyInput = Shapes::StructureShape.new(name: 'GetManagedScalingPolicyInput')
121
126
  GetManagedScalingPolicyOutput = Shapes::StructureShape.new(name: 'GetManagedScalingPolicyOutput')
127
+ GetOnClusterAppUIPresignedURLInput = Shapes::StructureShape.new(name: 'GetOnClusterAppUIPresignedURLInput')
128
+ GetOnClusterAppUIPresignedURLOutput = Shapes::StructureShape.new(name: 'GetOnClusterAppUIPresignedURLOutput')
129
+ GetPersistentAppUIPresignedURLInput = Shapes::StructureShape.new(name: 'GetPersistentAppUIPresignedURLInput')
130
+ GetPersistentAppUIPresignedURLOutput = Shapes::StructureShape.new(name: 'GetPersistentAppUIPresignedURLOutput')
122
131
  GetStudioSessionMappingInput = Shapes::StructureShape.new(name: 'GetStudioSessionMappingInput')
123
132
  GetStudioSessionMappingOutput = Shapes::StructureShape.new(name: 'GetStudioSessionMappingOutput')
124
133
  HadoopJarStepConfig = Shapes::StructureShape.new(name: 'HadoopJarStepConfig')
@@ -233,6 +242,7 @@ module Aws::EMR
233
242
  NotebookS3LocationFromInput = Shapes::StructureShape.new(name: 'NotebookS3LocationFromInput')
234
243
  OSRelease = Shapes::StructureShape.new(name: 'OSRelease')
235
244
  OSReleaseList = Shapes::ListShape.new(name: 'OSReleaseList')
245
+ OnClusterAppUIType = Shapes::StringShape.new(name: 'OnClusterAppUIType')
236
246
  OnDemandCapacityReservationOptions = Shapes::StructureShape.new(name: 'OnDemandCapacityReservationOptions')
237
247
  OnDemandCapacityReservationPreference = Shapes::StringShape.new(name: 'OnDemandCapacityReservationPreference')
238
248
  OnDemandCapacityReservationUsageStrategy = Shapes::StringShape.new(name: 'OnDemandCapacityReservationUsageStrategy')
@@ -243,6 +253,9 @@ module Aws::EMR
243
253
  OutputNotebookFormat = Shapes::StringShape.new(name: 'OutputNotebookFormat')
244
254
  OutputNotebookS3LocationForOutput = Shapes::StructureShape.new(name: 'OutputNotebookS3LocationForOutput')
245
255
  OutputNotebookS3LocationFromInput = Shapes::StructureShape.new(name: 'OutputNotebookS3LocationFromInput')
256
+ PersistentAppUI = Shapes::StructureShape.new(name: 'PersistentAppUI')
257
+ PersistentAppUIType = Shapes::StringShape.new(name: 'PersistentAppUIType')
258
+ PersistentAppUITypeList = Shapes::ListShape.new(name: 'PersistentAppUITypeList')
246
259
  PlacementGroupConfig = Shapes::StructureShape.new(name: 'PlacementGroupConfig')
247
260
  PlacementGroupConfigList = Shapes::ListShape.new(name: 'PlacementGroupConfigList')
248
261
  PlacementGroupStrategy = Shapes::StringShape.new(name: 'PlacementGroupStrategy')
@@ -250,6 +263,7 @@ module Aws::EMR
250
263
  Port = Shapes::IntegerShape.new(name: 'Port')
251
264
  PortRange = Shapes::StructureShape.new(name: 'PortRange')
252
265
  PortRanges = Shapes::ListShape.new(name: 'PortRanges')
266
+ ProfilerType = Shapes::StringShape.new(name: 'ProfilerType')
253
267
  PutAutoScalingPolicyInput = Shapes::StructureShape.new(name: 'PutAutoScalingPolicyInput')
254
268
  PutAutoScalingPolicyOutput = Shapes::StructureShape.new(name: 'PutAutoScalingPolicyOutput')
255
269
  PutAutoTerminationPolicyInput = Shapes::StructureShape.new(name: 'PutAutoTerminationPolicyInput')
@@ -537,6 +551,17 @@ module Aws::EMR
537
551
 
538
552
  ConfigurationList.member = Shapes::ShapeRef.new(shape: Configuration)
539
553
 
554
+ CreatePersistentAppUIInput.add_member(:target_resource_arn, Shapes::ShapeRef.new(shape: ArnType, required: true, location_name: "TargetResourceArn"))
555
+ CreatePersistentAppUIInput.add_member(:emr_containers_config, Shapes::ShapeRef.new(shape: EMRContainersConfig, location_name: "EMRContainersConfig"))
556
+ CreatePersistentAppUIInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
557
+ CreatePersistentAppUIInput.add_member(:x_referer, Shapes::ShapeRef.new(shape: String, location_name: "XReferer"))
558
+ CreatePersistentAppUIInput.add_member(:profiler_type, Shapes::ShapeRef.new(shape: ProfilerType, location_name: "ProfilerType"))
559
+ CreatePersistentAppUIInput.struct_class = Types::CreatePersistentAppUIInput
560
+
561
+ CreatePersistentAppUIOutput.add_member(:persistent_app_ui_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "PersistentAppUIId"))
562
+ CreatePersistentAppUIOutput.add_member(:runtime_role_enabled_cluster, Shapes::ShapeRef.new(shape: Boolean, location_name: "RuntimeRoleEnabledCluster"))
563
+ CreatePersistentAppUIOutput.struct_class = Types::CreatePersistentAppUIOutput
564
+
540
565
  CreateSecurityConfigurationInput.add_member(:name, Shapes::ShapeRef.new(shape: XmlString, required: true, location_name: "Name"))
541
566
  CreateSecurityConfigurationInput.add_member(:security_configuration, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SecurityConfiguration"))
542
567
  CreateSecurityConfigurationInput.struct_class = Types::CreateSecurityConfigurationInput
@@ -616,6 +641,12 @@ module Aws::EMR
616
641
  DescribeNotebookExecutionOutput.add_member(:notebook_execution, Shapes::ShapeRef.new(shape: NotebookExecution, location_name: "NotebookExecution"))
617
642
  DescribeNotebookExecutionOutput.struct_class = Types::DescribeNotebookExecutionOutput
618
643
 
644
+ DescribePersistentAppUIInput.add_member(:persistent_app_ui_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, required: true, location_name: "PersistentAppUIId"))
645
+ DescribePersistentAppUIInput.struct_class = Types::DescribePersistentAppUIInput
646
+
647
+ DescribePersistentAppUIOutput.add_member(:persistent_app_ui, Shapes::ShapeRef.new(shape: PersistentAppUI, location_name: "PersistentAppUI"))
648
+ DescribePersistentAppUIOutput.struct_class = Types::DescribePersistentAppUIOutput
649
+
619
650
  DescribeReleaseLabelInput.add_member(:release_label, Shapes::ShapeRef.new(shape: String, location_name: "ReleaseLabel"))
620
651
  DescribeReleaseLabelInput.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
621
652
  DescribeReleaseLabelInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResultsNumber, location_name: "MaxResults"))
@@ -652,6 +683,9 @@ module Aws::EMR
652
683
 
653
684
  EC2InstanceIdsToTerminateList.member = Shapes::ShapeRef.new(shape: InstanceId)
654
685
 
686
+ EMRContainersConfig.add_member(:job_run_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "JobRunId"))
687
+ EMRContainersConfig.struct_class = Types::EMRContainersConfig
688
+
655
689
  EbsBlockDevice.add_member(:volume_specification, Shapes::ShapeRef.new(shape: VolumeSpecification, location_name: "VolumeSpecification"))
656
690
  EbsBlockDevice.add_member(:device, Shapes::ShapeRef.new(shape: String, location_name: "Device"))
657
691
  EbsBlockDevice.struct_class = Types::EbsBlockDevice
@@ -736,6 +770,28 @@ module Aws::EMR
736
770
  GetManagedScalingPolicyOutput.add_member(:managed_scaling_policy, Shapes::ShapeRef.new(shape: ManagedScalingPolicy, location_name: "ManagedScalingPolicy"))
737
771
  GetManagedScalingPolicyOutput.struct_class = Types::GetManagedScalingPolicyOutput
738
772
 
773
+ GetOnClusterAppUIPresignedURLInput.add_member(:cluster_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, required: true, location_name: "ClusterId"))
774
+ GetOnClusterAppUIPresignedURLInput.add_member(:on_cluster_app_ui_type, Shapes::ShapeRef.new(shape: OnClusterAppUIType, location_name: "OnClusterAppUIType"))
775
+ GetOnClusterAppUIPresignedURLInput.add_member(:application_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "ApplicationId"))
776
+ GetOnClusterAppUIPresignedURLInput.add_member(:dry_run, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "DryRun"))
777
+ GetOnClusterAppUIPresignedURLInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ArnType, location_name: "ExecutionRoleArn"))
778
+ GetOnClusterAppUIPresignedURLInput.struct_class = Types::GetOnClusterAppUIPresignedURLInput
779
+
780
+ GetOnClusterAppUIPresignedURLOutput.add_member(:presigned_url_ready, Shapes::ShapeRef.new(shape: Boolean, location_name: "PresignedURLReady"))
781
+ GetOnClusterAppUIPresignedURLOutput.add_member(:presigned_url, Shapes::ShapeRef.new(shape: XmlString, location_name: "PresignedURL"))
782
+ GetOnClusterAppUIPresignedURLOutput.struct_class = Types::GetOnClusterAppUIPresignedURLOutput
783
+
784
+ GetPersistentAppUIPresignedURLInput.add_member(:persistent_app_ui_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, required: true, location_name: "PersistentAppUIId"))
785
+ GetPersistentAppUIPresignedURLInput.add_member(:persistent_app_ui_type, Shapes::ShapeRef.new(shape: PersistentAppUIType, location_name: "PersistentAppUIType"))
786
+ GetPersistentAppUIPresignedURLInput.add_member(:application_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "ApplicationId"))
787
+ GetPersistentAppUIPresignedURLInput.add_member(:auth_proxy_call, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "AuthProxyCall"))
788
+ GetPersistentAppUIPresignedURLInput.add_member(:execution_role_arn, Shapes::ShapeRef.new(shape: ArnType, location_name: "ExecutionRoleArn"))
789
+ GetPersistentAppUIPresignedURLInput.struct_class = Types::GetPersistentAppUIPresignedURLInput
790
+
791
+ GetPersistentAppUIPresignedURLOutput.add_member(:presigned_url_ready, Shapes::ShapeRef.new(shape: Boolean, location_name: "PresignedURLReady"))
792
+ GetPersistentAppUIPresignedURLOutput.add_member(:presigned_url, Shapes::ShapeRef.new(shape: XmlString, location_name: "PresignedURL"))
793
+ GetPersistentAppUIPresignedURLOutput.struct_class = Types::GetPersistentAppUIPresignedURLOutput
794
+
739
795
  GetStudioSessionMappingInput.add_member(:studio_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, required: true, location_name: "StudioId"))
740
796
  GetStudioSessionMappingInput.add_member(:identity_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "IdentityId"))
741
797
  GetStudioSessionMappingInput.add_member(:identity_name, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "IdentityName"))
@@ -1250,6 +1306,18 @@ module Aws::EMR
1250
1306
  OutputNotebookS3LocationFromInput.add_member(:key, Shapes::ShapeRef.new(shape: UriString, location_name: "Key"))
1251
1307
  OutputNotebookS3LocationFromInput.struct_class = Types::OutputNotebookS3LocationFromInput
1252
1308
 
1309
+ PersistentAppUI.add_member(:persistent_app_ui_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "PersistentAppUIId"))
1310
+ PersistentAppUI.add_member(:persistent_app_ui_type_list, Shapes::ShapeRef.new(shape: PersistentAppUITypeList, location_name: "PersistentAppUITypeList"))
1311
+ PersistentAppUI.add_member(:persistent_app_ui_status, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "PersistentAppUIStatus"))
1312
+ PersistentAppUI.add_member(:author_id, Shapes::ShapeRef.new(shape: XmlStringMaxLen256, location_name: "AuthorId"))
1313
+ PersistentAppUI.add_member(:creation_time, Shapes::ShapeRef.new(shape: Date, location_name: "CreationTime"))
1314
+ PersistentAppUI.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Date, location_name: "LastModifiedTime"))
1315
+ PersistentAppUI.add_member(:last_state_change_reason, Shapes::ShapeRef.new(shape: XmlString, location_name: "LastStateChangeReason"))
1316
+ PersistentAppUI.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
1317
+ PersistentAppUI.struct_class = Types::PersistentAppUI
1318
+
1319
+ PersistentAppUITypeList.member = Shapes::ShapeRef.new(shape: PersistentAppUIType)
1320
+
1253
1321
  PlacementGroupConfig.add_member(:instance_role, Shapes::ShapeRef.new(shape: InstanceRoleType, required: true, location_name: "InstanceRole"))
1254
1322
  PlacementGroupConfig.add_member(:placement_strategy, Shapes::ShapeRef.new(shape: PlacementGroupStrategy, location_name: "PlacementStrategy"))
1255
1323
  PlacementGroupConfig.struct_class = Types::PlacementGroupConfig
@@ -1693,6 +1761,16 @@ module Aws::EMR
1693
1761
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1694
1762
  end)
1695
1763
 
1764
+ api.add_operation(:create_persistent_app_ui, Seahorse::Model::Operation.new.tap do |o|
1765
+ o.name = "CreatePersistentAppUI"
1766
+ o.http_method = "POST"
1767
+ o.http_request_uri = "/"
1768
+ o.input = Shapes::ShapeRef.new(shape: CreatePersistentAppUIInput)
1769
+ o.output = Shapes::ShapeRef.new(shape: CreatePersistentAppUIOutput)
1770
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1771
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1772
+ end)
1773
+
1696
1774
  api.add_operation(:create_security_configuration, Seahorse::Model::Operation.new.tap do |o|
1697
1775
  o.name = "CreateSecurityConfiguration"
1698
1776
  o.http_method = "POST"
@@ -1783,6 +1861,16 @@ module Aws::EMR
1783
1861
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1784
1862
  end)
1785
1863
 
1864
+ api.add_operation(:describe_persistent_app_ui, Seahorse::Model::Operation.new.tap do |o|
1865
+ o.name = "DescribePersistentAppUI"
1866
+ o.http_method = "POST"
1867
+ o.http_request_uri = "/"
1868
+ o.input = Shapes::ShapeRef.new(shape: DescribePersistentAppUIInput)
1869
+ o.output = Shapes::ShapeRef.new(shape: DescribePersistentAppUIOutput)
1870
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1871
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1872
+ end)
1873
+
1786
1874
  api.add_operation(:describe_release_label, Seahorse::Model::Operation.new.tap do |o|
1787
1875
  o.name = "DescribeReleaseLabel"
1788
1876
  o.http_method = "POST"
@@ -1859,6 +1947,26 @@ module Aws::EMR
1859
1947
  o.output = Shapes::ShapeRef.new(shape: GetManagedScalingPolicyOutput)
1860
1948
  end)
1861
1949
 
1950
+ api.add_operation(:get_on_cluster_app_ui_presigned_url, Seahorse::Model::Operation.new.tap do |o|
1951
+ o.name = "GetOnClusterAppUIPresignedURL"
1952
+ o.http_method = "POST"
1953
+ o.http_request_uri = "/"
1954
+ o.input = Shapes::ShapeRef.new(shape: GetOnClusterAppUIPresignedURLInput)
1955
+ o.output = Shapes::ShapeRef.new(shape: GetOnClusterAppUIPresignedURLOutput)
1956
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
1957
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1958
+ end)
1959
+
1960
+ api.add_operation(:get_persistent_app_ui_presigned_url, Seahorse::Model::Operation.new.tap do |o|
1961
+ o.name = "GetPersistentAppUIPresignedURL"
1962
+ o.http_method = "POST"
1963
+ o.http_request_uri = "/"
1964
+ o.input = Shapes::ShapeRef.new(shape: GetPersistentAppUIPresignedURLInput)
1965
+ o.output = Shapes::ShapeRef.new(shape: GetPersistentAppUIPresignedURLOutput)
1966
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
1967
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1968
+ end)
1969
+
1862
1970
  api.add_operation(:get_studio_session_mapping, Seahorse::Model::Operation.new.tap do |o|
1863
1971
  o.name = "GetStudioSessionMapping"
1864
1972
  o.http_method = "POST"
@@ -1072,6 +1072,58 @@ module Aws::EMR
1072
1072
  include Aws::Structure
1073
1073
  end
1074
1074
 
1075
+ # @!attribute [rw] target_resource_arn
1076
+ # The unique Amazon Resource Name (ARN) of the target resource.
1077
+ # @return [String]
1078
+ #
1079
+ # @!attribute [rw] emr_containers_config
1080
+ # The EMR containers configuration.
1081
+ # @return [Types::EMRContainersConfig]
1082
+ #
1083
+ # @!attribute [rw] tags
1084
+ # Tags for the persistent application user interface.
1085
+ # @return [Array<Types::Tag>]
1086
+ #
1087
+ # @!attribute [rw] x_referer
1088
+ # The cross reference for the persistent application user interface.
1089
+ # @return [String]
1090
+ #
1091
+ # @!attribute [rw] profiler_type
1092
+ # The profiler type for the persistent application user interface.
1093
+ # Valid values are SHS, TEZUI, or YTS.
1094
+ # @return [String]
1095
+ #
1096
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CreatePersistentAppUIInput AWS API Documentation
1097
+ #
1098
+ class CreatePersistentAppUIInput < Struct.new(
1099
+ :target_resource_arn,
1100
+ :emr_containers_config,
1101
+ :tags,
1102
+ :x_referer,
1103
+ :profiler_type)
1104
+ SENSITIVE = []
1105
+ include Aws::Structure
1106
+ end
1107
+
1108
+ # @!attribute [rw] persistent_app_ui_id
1109
+ # The persistent application user interface identifier.
1110
+ # @return [String]
1111
+ #
1112
+ # @!attribute [rw] runtime_role_enabled_cluster
1113
+ # Represents if the EMR on EC2 cluster that the persisent application
1114
+ # user interface is created for is a runtime role enabled cluster or
1115
+ # not.
1116
+ # @return [Boolean]
1117
+ #
1118
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/CreatePersistentAppUIOutput AWS API Documentation
1119
+ #
1120
+ class CreatePersistentAppUIOutput < Struct.new(
1121
+ :persistent_app_ui_id,
1122
+ :runtime_role_enabled_cluster)
1123
+ SENSITIVE = []
1124
+ include Aws::Structure
1125
+ end
1126
+
1075
1127
  # @!attribute [rw] name
1076
1128
  # The name of the security configuration.
1077
1129
  # @return [String]
@@ -1503,6 +1555,30 @@ module Aws::EMR
1503
1555
  include Aws::Structure
1504
1556
  end
1505
1557
 
1558
+ # @!attribute [rw] persistent_app_ui_id
1559
+ # The identifier for the persistent application user interface.
1560
+ # @return [String]
1561
+ #
1562
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribePersistentAppUIInput AWS API Documentation
1563
+ #
1564
+ class DescribePersistentAppUIInput < Struct.new(
1565
+ :persistent_app_ui_id)
1566
+ SENSITIVE = []
1567
+ include Aws::Structure
1568
+ end
1569
+
1570
+ # @!attribute [rw] persistent_app_ui
1571
+ # The persistent application user interface.
1572
+ # @return [Types::PersistentAppUI]
1573
+ #
1574
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/DescribePersistentAppUIOutput AWS API Documentation
1575
+ #
1576
+ class DescribePersistentAppUIOutput < Struct.new(
1577
+ :persistent_app_ui)
1578
+ SENSITIVE = []
1579
+ include Aws::Structure
1580
+ end
1581
+
1506
1582
  # @!attribute [rw] release_label
1507
1583
  # The target release label to be described.
1508
1584
  # @return [String]
@@ -1655,6 +1731,20 @@ module Aws::EMR
1655
1731
  include Aws::Structure
1656
1732
  end
1657
1733
 
1734
+ # The EMR container configuration.
1735
+ #
1736
+ # @!attribute [rw] job_run_id
1737
+ # The Job run ID for the container configuration.
1738
+ # @return [String]
1739
+ #
1740
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/EMRContainersConfig AWS API Documentation
1741
+ #
1742
+ class EMRContainersConfig < Struct.new(
1743
+ :job_run_id)
1744
+ SENSITIVE = []
1745
+ include Aws::Structure
1746
+ end
1747
+
1658
1748
  # Configuration of requested EBS block device associated with the
1659
1749
  # instance group.
1660
1750
  #
@@ -2072,6 +2162,111 @@ module Aws::EMR
2072
2162
  include Aws::Structure
2073
2163
  end
2074
2164
 
2165
+ # @!attribute [rw] cluster_id
2166
+ # The cluster ID associated with the cluster's application user
2167
+ # interface presigned URL.
2168
+ # @return [String]
2169
+ #
2170
+ # @!attribute [rw] on_cluster_app_ui_type
2171
+ # The application UI type associated with the cluster's application
2172
+ # user interface presigned URL.
2173
+ # @return [String]
2174
+ #
2175
+ # @!attribute [rw] application_id
2176
+ # The application ID associated with the cluster's application user
2177
+ # interface presigned URL.
2178
+ # @return [String]
2179
+ #
2180
+ # @!attribute [rw] dry_run
2181
+ # Determines if the user interface presigned URL is for a dry run.
2182
+ # @return [Boolean]
2183
+ #
2184
+ # @!attribute [rw] execution_role_arn
2185
+ # The execution role ARN associated with the cluster's application
2186
+ # user interface presigned URL.
2187
+ # @return [String]
2188
+ #
2189
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/GetOnClusterAppUIPresignedURLInput AWS API Documentation
2190
+ #
2191
+ class GetOnClusterAppUIPresignedURLInput < Struct.new(
2192
+ :cluster_id,
2193
+ :on_cluster_app_ui_type,
2194
+ :application_id,
2195
+ :dry_run,
2196
+ :execution_role_arn)
2197
+ SENSITIVE = []
2198
+ include Aws::Structure
2199
+ end
2200
+
2201
+ # @!attribute [rw] presigned_url_ready
2202
+ # Used to determine if the presigned URL is ready.
2203
+ # @return [Boolean]
2204
+ #
2205
+ # @!attribute [rw] presigned_url
2206
+ # The cluster's generated presigned URL.
2207
+ # @return [String]
2208
+ #
2209
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/GetOnClusterAppUIPresignedURLOutput AWS API Documentation
2210
+ #
2211
+ class GetOnClusterAppUIPresignedURLOutput < Struct.new(
2212
+ :presigned_url_ready,
2213
+ :presigned_url)
2214
+ SENSITIVE = []
2215
+ include Aws::Structure
2216
+ end
2217
+
2218
+ # @!attribute [rw] persistent_app_ui_id
2219
+ # The persistent application user interface ID associated with the
2220
+ # presigned URL.
2221
+ # @return [String]
2222
+ #
2223
+ # @!attribute [rw] persistent_app_ui_type
2224
+ # The persistent application user interface type associated with the
2225
+ # presigned URL.
2226
+ # @return [String]
2227
+ #
2228
+ # @!attribute [rw] application_id
2229
+ # The application ID associated with the presigned URL.
2230
+ # @return [String]
2231
+ #
2232
+ # @!attribute [rw] auth_proxy_call
2233
+ # A boolean that represents if the caller is an authentication proxy
2234
+ # call.
2235
+ # @return [Boolean]
2236
+ #
2237
+ # @!attribute [rw] execution_role_arn
2238
+ # The execution role ARN associated with the presigned URL.
2239
+ # @return [String]
2240
+ #
2241
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/GetPersistentAppUIPresignedURLInput AWS API Documentation
2242
+ #
2243
+ class GetPersistentAppUIPresignedURLInput < Struct.new(
2244
+ :persistent_app_ui_id,
2245
+ :persistent_app_ui_type,
2246
+ :application_id,
2247
+ :auth_proxy_call,
2248
+ :execution_role_arn)
2249
+ SENSITIVE = []
2250
+ include Aws::Structure
2251
+ end
2252
+
2253
+ # @!attribute [rw] presigned_url_ready
2254
+ # Used to determine if the presigned URL is ready.
2255
+ # @return [Boolean]
2256
+ #
2257
+ # @!attribute [rw] presigned_url
2258
+ # The returned presigned URL.
2259
+ # @return [String]
2260
+ #
2261
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/GetPersistentAppUIPresignedURLOutput AWS API Documentation
2262
+ #
2263
+ class GetPersistentAppUIPresignedURLOutput < Struct.new(
2264
+ :presigned_url_ready,
2265
+ :presigned_url)
2266
+ SENSITIVE = []
2267
+ include Aws::Structure
2268
+ end
2269
+
2075
2270
  # @!attribute [rw] studio_id
2076
2271
  # The ID of the Amazon EMR Studio.
2077
2272
  # @return [String]
@@ -5026,6 +5221,62 @@ module Aws::EMR
5026
5221
  include Aws::Structure
5027
5222
  end
5028
5223
 
5224
+ # Holds persistent application user interface information. Applications
5225
+ # installed on the Amazon EMR cluster publish user interfaces as web
5226
+ # sites to monitor cluster activity.
5227
+ #
5228
+ # @!attribute [rw] persistent_app_ui_id
5229
+ # The identifier for the persistent application user interface object.
5230
+ # @return [String]
5231
+ #
5232
+ # @!attribute [rw] persistent_app_ui_type_list
5233
+ # The type list for the persistent application user interface object.
5234
+ # Valid values include SHS, YTS, or TEZ.
5235
+ # @return [Array<String>]
5236
+ #
5237
+ # @!attribute [rw] persistent_app_ui_status
5238
+ # The status for the persistent application user interface object.
5239
+ # @return [String]
5240
+ #
5241
+ # @!attribute [rw] author_id
5242
+ # The author ID for the persistent application user interface object.
5243
+ # @return [String]
5244
+ #
5245
+ # @!attribute [rw] creation_time
5246
+ # The creation date and time for the persistent application user
5247
+ # interface object.
5248
+ # @return [Time]
5249
+ #
5250
+ # @!attribute [rw] last_modified_time
5251
+ # The date and time the persistent application user interface object
5252
+ # was last changed.
5253
+ # @return [Time]
5254
+ #
5255
+ # @!attribute [rw] last_state_change_reason
5256
+ # The reason the persistent application user interface object was last
5257
+ # changed.
5258
+ # @return [String]
5259
+ #
5260
+ # @!attribute [rw] tags
5261
+ # A collection of tags for the persistent application user interface
5262
+ # object.
5263
+ # @return [Array<Types::Tag>]
5264
+ #
5265
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elasticmapreduce-2009-03-31/PersistentAppUI AWS API Documentation
5266
+ #
5267
+ class PersistentAppUI < Struct.new(
5268
+ :persistent_app_ui_id,
5269
+ :persistent_app_ui_type_list,
5270
+ :persistent_app_ui_status,
5271
+ :author_id,
5272
+ :creation_time,
5273
+ :last_modified_time,
5274
+ :last_state_change_reason,
5275
+ :tags)
5276
+ SENSITIVE = []
5277
+ include Aws::Structure
5278
+ end
5279
+
5029
5280
  # Placement group configuration for an Amazon EMR cluster. The
5030
5281
  # configuration specifies the placement strategy that can be applied to
5031
5282
  # instance roles during cluster creation.
data/lib/aws-sdk-emr.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::EMR
55
55
  autoload :EndpointProvider, 'aws-sdk-emr/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-emr/endpoints'
57
57
 
58
- GEM_VERSION = '1.109.0'
58
+ GEM_VERSION = '1.110.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -296,6 +296,28 @@ module Aws
296
296
  ) -> _CancelStepsResponseSuccess
297
297
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelStepsResponseSuccess
298
298
 
299
+ interface _CreatePersistentAppUIResponseSuccess
300
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePersistentAppUIOutput]
301
+ def persistent_app_ui_id: () -> ::String
302
+ def runtime_role_enabled_cluster: () -> bool
303
+ end
304
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMR/Client.html#create_persistent_app_ui-instance_method
305
+ def create_persistent_app_ui: (
306
+ target_resource_arn: ::String,
307
+ ?emr_containers_config: {
308
+ job_run_id: ::String?
309
+ },
310
+ ?tags: Array[
311
+ {
312
+ key: ::String?,
313
+ value: ::String?
314
+ },
315
+ ],
316
+ ?x_referer: ::String,
317
+ ?profiler_type: ("SHS" | "TEZUI" | "YTS")
318
+ ) -> _CreatePersistentAppUIResponseSuccess
319
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePersistentAppUIResponseSuccess
320
+
299
321
  interface _CreateSecurityConfigurationResponseSuccess
300
322
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateSecurityConfigurationOutput]
301
323
  def name: () -> ::String
@@ -407,6 +429,16 @@ module Aws
407
429
  ) -> _DescribeNotebookExecutionResponseSuccess
408
430
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeNotebookExecutionResponseSuccess
409
431
 
432
+ interface _DescribePersistentAppUIResponseSuccess
433
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribePersistentAppUIOutput]
434
+ def persistent_app_ui: () -> Types::PersistentAppUI
435
+ end
436
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMR/Client.html#describe_persistent_app_ui-instance_method
437
+ def describe_persistent_app_ui: (
438
+ persistent_app_ui_id: ::String
439
+ ) -> _DescribePersistentAppUIResponseSuccess
440
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribePersistentAppUIResponseSuccess
441
+
410
442
  interface _DescribeReleaseLabelResponseSuccess
411
443
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReleaseLabelOutput]
412
444
  def release_label: () -> ::String
@@ -497,6 +529,36 @@ module Aws
497
529
  ) -> _GetManagedScalingPolicyResponseSuccess
498
530
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetManagedScalingPolicyResponseSuccess
499
531
 
532
+ interface _GetOnClusterAppUIPresignedURLResponseSuccess
533
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetOnClusterAppUIPresignedURLOutput]
534
+ def presigned_url_ready: () -> bool
535
+ def presigned_url: () -> ::String
536
+ end
537
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMR/Client.html#get_on_cluster_app_ui_presigned_url-instance_method
538
+ def get_on_cluster_app_ui_presigned_url: (
539
+ cluster_id: ::String,
540
+ ?on_cluster_app_ui_type: ("SparkHistoryServer" | "YarnTimelineService" | "TezUI" | "ApplicationMaster" | "JobHistoryServer" | "ResourceManager"),
541
+ ?application_id: ::String,
542
+ ?dry_run: bool,
543
+ ?execution_role_arn: ::String
544
+ ) -> _GetOnClusterAppUIPresignedURLResponseSuccess
545
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOnClusterAppUIPresignedURLResponseSuccess
546
+
547
+ interface _GetPersistentAppUIPresignedURLResponseSuccess
548
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPersistentAppUIPresignedURLOutput]
549
+ def presigned_url_ready: () -> bool
550
+ def presigned_url: () -> ::String
551
+ end
552
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EMR/Client.html#get_persistent_app_ui_presigned_url-instance_method
553
+ def get_persistent_app_ui_presigned_url: (
554
+ persistent_app_ui_id: ::String,
555
+ ?persistent_app_ui_type: ("SHS" | "TEZ" | "YTS"),
556
+ ?application_id: ::String,
557
+ ?auth_proxy_call: bool,
558
+ ?execution_role_arn: ::String
559
+ ) -> _GetPersistentAppUIPresignedURLResponseSuccess
560
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPersistentAppUIPresignedURLResponseSuccess
561
+
500
562
  interface _GetStudioSessionMappingResponseSuccess
501
563
  include ::Seahorse::Client::_ResponseSuccess[Types::GetStudioSessionMappingOutput]
502
564
  def session_mapping: () -> Types::SessionMappingDetail
data/sig/types.rbs CHANGED
@@ -240,6 +240,21 @@ module Aws::EMR
240
240
  SENSITIVE: []
241
241
  end
242
242
 
243
+ class CreatePersistentAppUIInput
244
+ attr_accessor target_resource_arn: ::String
245
+ attr_accessor emr_containers_config: Types::EMRContainersConfig
246
+ attr_accessor tags: ::Array[Types::Tag]
247
+ attr_accessor x_referer: ::String
248
+ attr_accessor profiler_type: ("SHS" | "TEZUI" | "YTS")
249
+ SENSITIVE: []
250
+ end
251
+
252
+ class CreatePersistentAppUIOutput
253
+ attr_accessor persistent_app_ui_id: ::String
254
+ attr_accessor runtime_role_enabled_cluster: bool
255
+ SENSITIVE: []
256
+ end
257
+
243
258
  class CreateSecurityConfigurationInput
244
259
  attr_accessor name: ::String
245
260
  attr_accessor security_configuration: ::String
@@ -353,6 +368,16 @@ module Aws::EMR
353
368
  SENSITIVE: []
354
369
  end
355
370
 
371
+ class DescribePersistentAppUIInput
372
+ attr_accessor persistent_app_ui_id: ::String
373
+ SENSITIVE: []
374
+ end
375
+
376
+ class DescribePersistentAppUIOutput
377
+ attr_accessor persistent_app_ui: Types::PersistentAppUI
378
+ SENSITIVE: []
379
+ end
380
+
356
381
  class DescribeReleaseLabelInput
357
382
  attr_accessor release_label: ::String
358
383
  attr_accessor next_token: ::String
@@ -401,6 +426,11 @@ module Aws::EMR
401
426
  SENSITIVE: []
402
427
  end
403
428
 
429
+ class EMRContainersConfig
430
+ attr_accessor job_run_id: ::String
431
+ SENSITIVE: []
432
+ end
433
+
404
434
  class EbsBlockDevice
405
435
  attr_accessor volume_specification: Types::VolumeSpecification
406
436
  attr_accessor device: ::String
@@ -503,6 +533,36 @@ module Aws::EMR
503
533
  SENSITIVE: []
504
534
  end
505
535
 
536
+ class GetOnClusterAppUIPresignedURLInput
537
+ attr_accessor cluster_id: ::String
538
+ attr_accessor on_cluster_app_ui_type: ("SparkHistoryServer" | "YarnTimelineService" | "TezUI" | "ApplicationMaster" | "JobHistoryServer" | "ResourceManager")
539
+ attr_accessor application_id: ::String
540
+ attr_accessor dry_run: bool
541
+ attr_accessor execution_role_arn: ::String
542
+ SENSITIVE: []
543
+ end
544
+
545
+ class GetOnClusterAppUIPresignedURLOutput
546
+ attr_accessor presigned_url_ready: bool
547
+ attr_accessor presigned_url: ::String
548
+ SENSITIVE: []
549
+ end
550
+
551
+ class GetPersistentAppUIPresignedURLInput
552
+ attr_accessor persistent_app_ui_id: ::String
553
+ attr_accessor persistent_app_ui_type: ("SHS" | "TEZ" | "YTS")
554
+ attr_accessor application_id: ::String
555
+ attr_accessor auth_proxy_call: bool
556
+ attr_accessor execution_role_arn: ::String
557
+ SENSITIVE: []
558
+ end
559
+
560
+ class GetPersistentAppUIPresignedURLOutput
561
+ attr_accessor presigned_url_ready: bool
562
+ attr_accessor presigned_url: ::String
563
+ SENSITIVE: []
564
+ end
565
+
506
566
  class GetStudioSessionMappingInput
507
567
  attr_accessor studio_id: ::String
508
568
  attr_accessor identity_id: ::String
@@ -1128,6 +1188,18 @@ module Aws::EMR
1128
1188
  SENSITIVE: []
1129
1189
  end
1130
1190
 
1191
+ class PersistentAppUI
1192
+ attr_accessor persistent_app_ui_id: ::String
1193
+ attr_accessor persistent_app_ui_type_list: ::Array[("SHS" | "TEZ" | "YTS")]
1194
+ attr_accessor persistent_app_ui_status: ::String
1195
+ attr_accessor author_id: ::String
1196
+ attr_accessor creation_time: ::Time
1197
+ attr_accessor last_modified_time: ::Time
1198
+ attr_accessor last_state_change_reason: ::String
1199
+ attr_accessor tags: ::Array[Types::Tag]
1200
+ SENSITIVE: []
1201
+ end
1202
+
1131
1203
  class PlacementGroupConfig
1132
1204
  attr_accessor instance_role: ("MASTER" | "CORE" | "TASK")
1133
1205
  attr_accessor placement_strategy: ("SPREAD" | "PARTITION" | "CLUSTER" | "NONE")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.109.0
4
+ version: 1.110.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services