pub struct ListComponentBuildVersions<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* private fields */ }
Expand description
Fluent builder constructing a request to ListComponentBuildVersions
.
Returns the list of component build versions for the specified semantic version.
The semantic version has four nodes:
Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
Implementations
impl<C, M, R> ListComponentBuildVersions<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> ListComponentBuildVersions<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<ListComponentBuildVersionsOutput, SdkError<ListComponentBuildVersionsError>> where
R::Policy: SmithyRetryPolicy<ListComponentBuildVersionsInputOperationOutputAlias, ListComponentBuildVersionsOutput, ListComponentBuildVersionsError, ListComponentBuildVersionsInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<ListComponentBuildVersionsOutput, SdkError<ListComponentBuildVersionsError>> where
R::Policy: SmithyRetryPolicy<ListComponentBuildVersionsInputOperationOutputAlias, ListComponentBuildVersionsOutput, ListComponentBuildVersionsError, ListComponentBuildVersionsInputOperationRetryAlias>,
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
The component version Amazon Resource Name (ARN) whose versions you want to list.
The component version Amazon Resource Name (ARN) whose versions you want to list.
The maximum items to return in a request.
The maximum items to return in a request.
A token to specify where to start paginating. This is the NextToken from a previously truncated response.
A token to specify where to start paginating. This is the NextToken from a previously truncated response.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for ListComponentBuildVersions<C, M, R>
impl<C, M, R> Send for ListComponentBuildVersions<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for ListComponentBuildVersions<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for ListComponentBuildVersions<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for ListComponentBuildVersions<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more