untagResource

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.

Samples


fun main() { 
   //sampleStart 
   // Successful UntagResource
val resp = supplyChainClient.untagResource {
    resourceArn = "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/data-integration-flows/my_flow1"
    tagKeys = listOf<String>(
        "tagKey1"
    )
} 
   //sampleEnd
}