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.

preguntada hace 2 años544 visualizaciones
1 Respuesta
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
respondido hace 2 años
  • Could you please provide any details related to where do I need to run these scripts?

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas