aws-sdk-emrserverless 1.55.0 → 1.56.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: c9e11018a3fe6ebba37a179d81460fa72370ce95e38a95b486e14806ae209d98
4
- data.tar.gz: 325af7ee0b76c752ec00c194e2ba83540a6e57f8dcc60b83401622c4e424af7d
3
+ metadata.gz: c735e6f5e47be6ef0a9828e8fb5b9cadf3f849ffaac1c7678fdc2801e40bbe6c
4
+ data.tar.gz: 2e6e3311a5f5e2a25770222623450cfd2131bc1b27032851a5bcce9b76359b2d
5
5
  SHA512:
6
- metadata.gz: 0cb295fbde3cf96c02c77f2dc66ef61937738d07a34af607f2919dae4aa450e6e690d757551a5fcf550f2c04d52f9be3f75b23e2a63ce06fb95a8cb5a4be8778
7
- data.tar.gz: 0ccdf747f0fee87a8bf199c57f3fdf395c8aac9fe13c9c08fb3695f1d11963b5b9d368515bfc435c256d2fe8f913d5c641564d63dc5d122adbf3bbbb10652297
6
+ metadata.gz: 1d72b50cb20888d8cbda9db1147b6322e8634ae934077390c3402b3ff50b0cea6d95e97ff7a33036910e8b65b38723fe17a56aff41a724947a6bd559475a8ddf
7
+ data.tar.gz: bc440a3599e258fe59a6706edb896416b0476210dcc586f74c5ef96a71c6858879e34a7ba4785539314601b5031ea6bfe5d0ae1dc43aed4759be5a83fafe8bf1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.0 (2025-10-30)
5
+ ------------------
6
+
7
+ * Feature - This release adds the capability to enable User Background Sessions for customers running Trusted Identity Propagation enabled Interactive Sessions on EMR Serverless Applications.
8
+
4
9
  1.55.0 (2025-10-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.55.0
1
+ 1.56.0
@@ -697,6 +697,7 @@ module Aws::EMRServerless
697
697
  # },
698
698
  # identity_center_configuration: {
699
699
  # identity_center_instance_arn: "IdentityCenterInstanceArn",
700
+ # user_background_sessions_enabled: false,
700
701
  # },
701
702
  # })
702
703
  #
@@ -811,6 +812,7 @@ module Aws::EMRServerless
811
812
  # resp.application.scheduler_configuration.max_concurrent_runs #=> Integer
812
813
  # resp.application.identity_center_configuration.identity_center_instance_arn #=> String
813
814
  # resp.application.identity_center_configuration.identity_center_application_arn #=> String
815
+ # resp.application.identity_center_configuration.user_background_sessions_enabled #=> Boolean
814
816
  #
815
817
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/GetApplication AWS API Documentation
816
818
  #
@@ -1605,6 +1607,7 @@ module Aws::EMRServerless
1605
1607
  # },
1606
1608
  # identity_center_configuration: {
1607
1609
  # identity_center_instance_arn: "IdentityCenterInstanceArn",
1610
+ # user_background_sessions_enabled: false,
1608
1611
  # },
1609
1612
  # })
1610
1613
  #
@@ -1666,6 +1669,7 @@ module Aws::EMRServerless
1666
1669
  # resp.application.scheduler_configuration.max_concurrent_runs #=> Integer
1667
1670
  # resp.application.identity_center_configuration.identity_center_instance_arn #=> String
1668
1671
  # resp.application.identity_center_configuration.identity_center_application_arn #=> String
1672
+ # resp.application.identity_center_configuration.user_background_sessions_enabled #=> Boolean
1669
1673
  #
1670
1674
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/UpdateApplication AWS API Documentation
1671
1675
  #
@@ -1694,7 +1698,7 @@ module Aws::EMRServerless
1694
1698
  tracer: tracer
1695
1699
  )
1696
1700
  context[:gem_name] = 'aws-sdk-emrserverless'
1697
- context[:gem_version] = '1.55.0'
1701
+ context[:gem_version] = '1.56.0'
1698
1702
  Seahorse::Client::Request.new(handlers, context)
1699
1703
  end
1700
1704
 
@@ -306,9 +306,11 @@ module Aws::EMRServerless
306
306
 
307
307
  IdentityCenterConfiguration.add_member(:identity_center_instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "identityCenterInstanceArn"))
308
308
  IdentityCenterConfiguration.add_member(:identity_center_application_arn, Shapes::ShapeRef.new(shape: IdentityCenterApplicationArn, location_name: "identityCenterApplicationArn"))
309
+ IdentityCenterConfiguration.add_member(:user_background_sessions_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "userBackgroundSessionsEnabled"))
309
310
  IdentityCenterConfiguration.struct_class = Types::IdentityCenterConfiguration
310
311
 
311
312
  IdentityCenterConfigurationInput.add_member(:identity_center_instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "identityCenterInstanceArn"))
313
+ IdentityCenterConfigurationInput.add_member(:user_background_sessions_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "userBackgroundSessionsEnabled"))
312
314
  IdentityCenterConfigurationInput.struct_class = Types::IdentityCenterConfigurationInput
313
315
 
314
316
  ImageConfiguration.add_member(:image_uri, Shapes::ShapeRef.new(shape: ImageUri, required: true, location_name: "imageUri"))
@@ -13,22 +13,22 @@ module Aws::EMRServerless
13
13
  # @!attribute region
14
14
  # The AWS region used to dispatch the request.
15
15
  #
16
- # @return [String]
16
+ # @return [string]
17
17
  #
18
18
  # @!attribute use_dual_stack
19
19
  # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
20
  #
21
- # @return [Boolean]
21
+ # @return [boolean]
22
22
  #
23
23
  # @!attribute use_fips
24
24
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
25
  #
26
- # @return [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute endpoint
29
29
  # Override the endpoint used to send this request
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :region,
@@ -695,9 +695,10 @@ module Aws::EMRServerless
695
695
  include Aws::Structure
696
696
  end
697
697
 
698
- # The IAM Identity Center Configuration that includes the Identify
699
- # Center instance and application ARNs that provide trusted-identity
700
- # propagation.
698
+ # The IAM Identity Center Configuration accepts the Identity Center
699
+ # instance parameter required to enable trusted identity propagation.
700
+ # This configuration allows identity propagation between integrated
701
+ # services and the Identity Center instance.
701
702
  #
702
703
  # @!attribute [rw] identity_center_instance_arn
703
704
  # The ARN of the IAM Identity Center instance.
@@ -708,28 +709,42 @@ module Aws::EMRServerless
708
709
  # Application that provides trusted-identity propagation.
709
710
  # @return [String]
710
711
  #
712
+ # @!attribute [rw] user_background_sessions_enabled
713
+ # Enables user background sessions for this application so Livy
714
+ # sessions can continue running after users log out of their
715
+ # interactive notebook or their Identity Center sessions expire.
716
+ # @return [Boolean]
717
+ #
711
718
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/IdentityCenterConfiguration AWS API Documentation
712
719
  #
713
720
  class IdentityCenterConfiguration < Struct.new(
714
721
  :identity_center_instance_arn,
715
- :identity_center_application_arn)
722
+ :identity_center_application_arn,
723
+ :user_background_sessions_enabled)
716
724
  SENSITIVE = []
717
725
  include Aws::Structure
718
726
  end
719
727
 
720
- # Specifies the IAM Identity Center configuration used to enable or
721
- # disable trusted identity propagation. When provided, this
722
- # configuration determines how the application interacts with IAM
723
- # Identity Center for user authentication and access control.
728
+ # The IAM Identity Center Configuration accepts the Identity Center
729
+ # instance parameter required to enable trusted identity propagation.
730
+ # This configuration allows identity propagation between integrated
731
+ # services and the Identity Center instance.
724
732
  #
725
733
  # @!attribute [rw] identity_center_instance_arn
726
734
  # The ARN of the IAM Identity Center instance.
727
735
  # @return [String]
728
736
  #
737
+ # @!attribute [rw] user_background_sessions_enabled
738
+ # Enables user background sessions for this application so Livy
739
+ # sessions can continue running after users log out of their
740
+ # interactive notebook or their Identity Center sessions expire.
741
+ # @return [Boolean]
742
+ #
729
743
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-serverless-2021-07-13/IdentityCenterConfigurationInput AWS API Documentation
730
744
  #
731
745
  class IdentityCenterConfigurationInput < Struct.new(
732
- :identity_center_instance_arn)
746
+ :identity_center_instance_arn,
747
+ :user_background_sessions_enabled)
733
748
  SENSITIVE = []
734
749
  include Aws::Structure
735
750
  end
@@ -54,7 +54,7 @@ module Aws::EMRServerless
54
54
  autoload :EndpointProvider, 'aws-sdk-emrserverless/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-emrserverless/endpoints'
56
56
 
57
- GEM_VERSION = '1.55.0'
57
+ GEM_VERSION = '1.56.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -174,7 +174,8 @@ module Aws
174
174
  max_concurrent_runs: ::Integer?
175
175
  },
176
176
  ?identity_center_configuration: {
177
- identity_center_instance_arn: ::String?
177
+ identity_center_instance_arn: ::String?,
178
+ user_background_sessions_enabled: bool?
178
179
  }
179
180
  ) -> _CreateApplicationResponseSuccess
180
181
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
@@ -461,7 +462,8 @@ module Aws
461
462
  max_concurrent_runs: ::Integer?
462
463
  },
463
464
  ?identity_center_configuration: {
464
- identity_center_instance_arn: ::String?
465
+ identity_center_instance_arn: ::String?,
466
+ user_background_sessions_enabled: bool?
465
467
  }
466
468
  ) -> _UpdateApplicationResponseSuccess
467
469
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
data/sig/types.rbs CHANGED
@@ -182,11 +182,13 @@ module Aws::EMRServerless
182
182
  class IdentityCenterConfiguration
183
183
  attr_accessor identity_center_instance_arn: ::String
184
184
  attr_accessor identity_center_application_arn: ::String
185
+ attr_accessor user_background_sessions_enabled: bool
185
186
  SENSITIVE: []
186
187
  end
187
188
 
188
189
  class IdentityCenterConfigurationInput
189
190
  attr_accessor identity_center_instance_arn: ::String
191
+ attr_accessor user_background_sessions_enabled: bool
190
192
  SENSITIVE: []
191
193
  end
192
194
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emrserverless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.55.0
4
+ version: 1.56.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services