Interface CfnUserProfilePropsMixin.EmrSettingsProperty

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

@Stability(Stable) public static interface CfnUserProfilePropsMixin.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.cfnpropertymixins.services.sagemaker.*;
 EmrSettingsProperty emrSettingsProperty = EmrSettingsProperty.builder()
         .assumableRoleArns(List.of("assumableRoleArns"))
         .executionRoleArns(List.of("executionRoleArns"))
         .build();
 

See Also: