interface EmrSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnUserProfile.EmrSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnUserProfile_EmrSettingsProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnUserProfile.EmrSettingsProperty |
Python | aws_cdk.aws_sagemaker.CfnUserProfile.EmrSettingsProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnUserProfile » EmrSettingsProperty |
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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const emrSettingsProperty: sagemaker.CfnUserProfile.EmrSettingsProperty = {
assumableRoleArns: ['assumableRoleArns'],
executionRoleArns: ['executionRoleArns'],
};
Properties
| Name | Type | Description |
|---|---|---|
| assumable | string[] | An array of Amazon Resource Names (ARNs) of the IAM roles that the execution role of SageMaker can assume. |
| execution | string[] | An array of ARNs of IAM roles used by EMR cluster instances or job execution environments. |
assumableRoleArns?
Type:
string[]
(optional)
An array of Amazon Resource Names (ARNs) of the IAM roles that the execution role of SageMaker can assume.
executionRoleArns?
Type:
string[]
(optional)
An array of ARNs of IAM roles used by EMR cluster instances or job execution environments.

.NET
Go
Java
Python
TypeScript