MLS-C01 Machine Learning Implementation and Operations • Set 2
MLS-C01 Machine Learning Implementation and Operations Practice Test 2 — 15 questions with explanations. Free, no signup.
A data scientist is trying to create a training job named 'test-model' using an IAM role with the attached policy. The creation fails with an AccessDenied error. What is the most likely cause?
Refer to the exhibit.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "sagemaker:CreateTrainingJob",
"Resource": "*",
"Condition": {
"StringEquals": {
"sagemaker:TrainingJobName": "*production*"
}
}
},
{
"Effect": "Deny",
"Action": "sagemaker:CreateTrainingJob",
"Resource": "*",
"Condition": {
"StringNotEquals": {
"sagemaker:TrainingJobName": "*production*"
}
}
}
]
}