Class: Aws::EMRServerless::Types::InteractiveConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-emrserverless/lib/aws-sdk-emrserverless/types.rb

Overview

The configuration to use to enable the different types of interactive use cases in an application.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#livy_endpoint_enabledBoolean

Enables an Apache Livy endpoint that you can connect to and run interactive jobs.

Returns:

  • (Boolean)


743
744
745
746
747
748
# File 'gems/aws-sdk-emrserverless/lib/aws-sdk-emrserverless/types.rb', line 743

class InteractiveConfiguration < Struct.new(
  :studio_enabled,
  :livy_endpoint_enabled)
  SENSITIVE = []
  include Aws::Structure
end

#studio_enabledBoolean

Enables you to connect an application to Amazon EMR Studio to run interactive workloads in a notebook.

Returns:

  • (Boolean)


743
744
745
746
747
748
# File 'gems/aws-sdk-emrserverless/lib/aws-sdk-emrserverless/types.rb', line 743

class InteractiveConfiguration < Struct.new(
  :studio_enabled,
  :livy_endpoint_enabled)
  SENSITIVE = []
  include Aws::Structure
end