Interface CfnApplicationPropsMixin.InteractiveConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationPropsMixin.InteractiveConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationPropsMixin
@Stability(Stable)
public static interface CfnApplicationPropsMixin.InteractiveConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration to use to enable the different types of interactive use cases in an application.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.emrserverless.*;
InteractiveConfigurationProperty interactiveConfigurationProperty = InteractiveConfigurationProperty.builder()
.livyEndpointEnabled(false)
.sessionEnabled(false)
.studioEnabled(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnApplicationPropsMixin.InteractiveConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectEnables an Apache Livy endpoint that you can connect to and run interactive jobs.default ObjectEnables interactive sessions on the application.default ObjectEnables you to connect an application to Amazon EMR Studio to run interactive workloads in a notebook.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLivyEndpointEnabled
Enables an Apache Livy endpoint that you can connect to and run interactive jobs.Returns union: either
BooleanorIResolvableDefault: - false
- See Also:
-
getSessionEnabled
Enables interactive sessions on the application.Returns union: either
BooleanorIResolvableDefault: - false
- See Also:
-
getStudioEnabled
Enables you to connect an application to Amazon EMR Studio to run interactive workloads in a notebook.Returns union: either
BooleanorIResolvableDefault: - false
- See Also:
-
builder
@Stability(Stable) static CfnApplicationPropsMixin.InteractiveConfigurationProperty.Builder builder()
-