listComponentBuildVersions
inline suspend fun ImagebuilderClient.listComponentBuildVersions(crossinline block: ListComponentBuildVersionsRequest.Builder.() -> Unit): ListComponentBuildVersionsResponse
Returns a list of component build versions for the specified component version ARN. You can only list build versions for components that your account owns. Deprecated build versions aren't included in the results.
Samples
// The following example lists the build versions that exist for version 1. 0. 0 of the specified
// component. The list returns the most recent build version first.
val resp = imagebuilderClient.listComponentBuildVersions {
componentVersionArn = "arn:aws:imagebuilder:us-west-2:111122223333:component/my-example-component/1.0.0"
}Content copied to clipboard