How to delete Pipeline, Trial and Experiment in Sagemaker

0

I already deleted Domain, Users, Models, Endpoints, Endpoint configurations, Notebook instances, S3 Bucket instance and log groups but left with Pipeline, Trial and Experiment. Can anyone please help me with steps to followed to delete Pipeline, Trial and Experiment.

已提問 2 年前檢視次數 546 次
1 個回答
0

Delete Pipeline (https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.delete_pipeline):

client = boto3.client('sagemaker')

response = client.delete_pipeline(
    PipelineName='string',
    ClientRequestToken='string'
)

Delete Trial (https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/sagemaker.html#SageMaker.Client.delete_trial_component):

response = client.delete_trial_component(
    TrialComponentName='string'
)

profile pictureAWS
已回答 2 年前
  • Could you please provide any details related to where do I need to run these scripts?

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南