tagResource
Adds a tag to a resource.
Samples
// TagResource
val resp = invoicingClient.tagResource {
resourceArn = "arn:aws:invoicing::000000000000:invoice-unit/12345678"
resourceTags = listOf<ResourceTag>(
ResourceTag {
key = "TagKey"
value = "TagValue"
}
)
}Content copied to clipboard