Interface CfnUserProfile.EmrSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserProfile.EmrSettingsProperty.Jsii$Proxy
Enclosing class:
CfnUserProfile

@Stability(Stable) public static interface CfnUserProfile.EmrSettingsProperty extends software.amazon.jsii.JsiiSerializable
Configuration parameters specifying IAM roles assumed by SageMaker's execution role and cluster instances.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 EmrSettingsProperty emrSettingsProperty = EmrSettingsProperty.builder()
         .assumableRoleArns(List.of("assumableRoleArns"))
         .executionRoleArns(List.of("executionRoleArns"))
         .build();
 

See Also: