interface EmrSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnUserProfilePropsMixin.EmrSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnUserProfilePropsMixin_EmrSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnUserProfilePropsMixin.EmrSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnUserProfilePropsMixin.EmrSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnUserProfilePropsMixin » 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/cfn-property-mixins';
const emrSettingsProperty: sagemaker.CfnUserProfilePropsMixin.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