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?

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠