describeConsumableResource
abstract suspend fun describeConsumableResource(input: DescribeConsumableResourceRequest): DescribeConsumableResourceResponse
Returns a description of the specified consumable resource.
Samples
fun main() {
//sampleStart
// Returns a description of the specified consumable resource.
val resp = batchClient.describeConsumableResource {
consumableResource = "myConsumableResource"
}
//sampleEnd
}