Delete Artifact
sagemaker_delete_artifact | R Documentation |
Deletes an artifact¶
Description¶
Deletes an artifact. Either ArtifactArn
or Source
must be specified.
Usage¶
sagemaker_delete_artifact(ArtifactArn, Source)
Arguments¶
ArtifactArn |
The Amazon Resource Name (ARN) of the artifact to delete. |
Source |
The URI of the source. |
Value¶
A list with the following syntax:
list(
ArtifactArn = "string"
)
Request syntax¶
svc$delete_artifact(
ArtifactArn = "string",
Source = list(
SourceUri = "string",
SourceTypes = list(
list(
SourceIdType = "MD5Hash"|"S3ETag"|"S3Version"|"Custom",
Value = "string"
)
)
)
)