AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

You can delete tags for an Amazon Web Services Supply chain resource such as instance, data flow, or dataset in AWS Supply Chain. During the data ingestion process, you can delete tags such as dev, test, or prod to data flows created during the data ingestion process in the AWS Supply Chain datasets.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to UntagResourceAsync.

Namespace: Amazon.SupplyChain
Assembly: AWSSDK.SupplyChain.dll
Version: 3.x.y.z

Syntax

C#
public abstract UntagResourceResponse UntagResource(
         UntagResourceRequest request
)

Parameters

request
Type: Amazon.SupplyChain.Model.UntagResourceRequest

Container for the necessary parameters to execute the UntagResource service method.

Return Value


The response from the UntagResource service method, as returned by SupplyChain.

Exceptions

ExceptionCondition
AccessDeniedException You do not have the required privileges to perform this action.
ConflictException Updating or deleting a resource can cause an inconsistent state.
InternalServerException Unexpected error during processing of request.
ResourceNotFoundException Request references a resource which does not exist.
ServiceQuotaExceededException Request would cause a service quota to be exceeded.
ThrottlingException Request was denied due to request throttling.
ValidationException The input does not satisfy the constraints specified by an AWS service.

Examples

Successful UntagResource


var client = new AmazonSupplyChainClient();
var response = client.CreateBillOfMaterialsImportJob(new CreateBillOfMaterialsImportJobRequest 
{
    ClientToken = "550e8400-e29b-41d4-a716-446655440000",
    InstanceId = "60f82bbd-71f7-4fcd-a941-472f574c5243",
    S3uri = "s3://mybucketname/pathelemene/file.csv"
});

string jobId = response.JobId;

            

Version Information

.NET Framework:
Supported in: 4.5 and newer, 3.5

See Also