pub struct DescribeObjects<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* private fields */ }
Expand description
Fluent builder constructing a request to DescribeObjects
.
Gets the object definitions for a set of objects associated with the pipeline. Object definitions are composed of a set of fields that define the properties of the object.
Implementations
impl<C, M, R> DescribeObjects<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> DescribeObjects<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<DescribeObjectsOutput, SdkError<DescribeObjectsError>> where
R::Policy: SmithyRetryPolicy<DescribeObjectsInputOperationOutputAlias, DescribeObjectsOutput, DescribeObjectsError, DescribeObjectsInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<DescribeObjectsOutput, SdkError<DescribeObjectsError>> where
R::Policy: SmithyRetryPolicy<DescribeObjectsInputOperationOutputAlias, DescribeObjectsOutput, DescribeObjectsError, DescribeObjectsInputOperationRetryAlias>,
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 ID of the pipeline that contains the object definitions.
The ID of the pipeline that contains the object definitions.
Appends an item to objectIds
.
To override the contents of this collection use set_object_ids
.
The IDs of the pipeline objects that contain the definitions to be described. You can pass as many as 25 identifiers in a single call to DescribeObjects
.
The IDs of the pipeline objects that contain the definitions to be described. You can pass as many as 25 identifiers in a single call to DescribeObjects
.
Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.
Indicates whether any expressions in the object should be evaluated when the object descriptions are returned.
The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call DescribeObjects
with the marker value from the previous call to retrieve the next set of results.
The starting point for the results to be returned. For the first call, this value should be empty. As long as there are more results, continue to call DescribeObjects
with the marker value from the previous call to retrieve the next set of results.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for DescribeObjects<C, M, R>
impl<C, M, R> Send for DescribeObjects<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for DescribeObjects<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for DescribeObjects<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for DescribeObjects<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