Struct aws_sdk_codecommit::client::fluent_builders::GetDifferences
source · [−]pub struct GetDifferences<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* private fields */ }
Expand description
Fluent builder constructing a request to GetDifferences
.
Returns information about the differences in a valid commit specifier (such as a branch, tag, HEAD, commit ID, or other fully qualified reference). Results can be limited to a specified path.
Implementations
impl<C, M, R> GetDifferences<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> GetDifferences<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<GetDifferencesOutput, SdkError<GetDifferencesError>> where
R::Policy: SmithyRetryPolicy<GetDifferencesInputOperationOutputAlias, GetDifferencesOutput, GetDifferencesError, GetDifferencesInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<GetDifferencesOutput, SdkError<GetDifferencesError>> where
R::Policy: SmithyRetryPolicy<GetDifferencesInputOperationOutputAlias, GetDifferencesOutput, GetDifferencesError, GetDifferencesInputOperationRetryAlias>,
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 name of the repository where you want to get differences.
The name of the repository where you want to get differences.
The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, the full commit ID). Optional. If not specified, all changes before the afterCommitSpecifier
value are shown. If you do not use beforeCommitSpecifier
in your request, consider limiting the results with maxResults
.
The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, the full commit ID). Optional. If not specified, all changes before the afterCommitSpecifier
value are shown. If you do not use beforeCommitSpecifier
in your request, consider limiting the results with maxResults
.
The branch, tag, HEAD, or other fully qualified reference used to identify a commit.
The branch, tag, HEAD, or other fully qualified reference used to identify a commit.
The file path in which to check for differences. Limits the results to this path. Can also be used to specify the previous name of a directory or folder. If beforePath
and afterPath
are not specified, differences are shown for all paths.
The file path in which to check for differences. Limits the results to this path. Can also be used to specify the previous name of a directory or folder. If beforePath
and afterPath
are not specified, differences are shown for all paths.
The file path in which to check differences. Limits the results to this path. Can also be used to specify the changed name of a directory or folder, if it has changed. If not specified, differences are shown for all paths.
The file path in which to check differences. Limits the results to this path. Can also be used to specify the changed name of a directory or folder, if it has changed. If not specified, differences are shown for all paths.
A non-zero, non-negative integer used to limit the number of returned results.
A non-zero, non-negative integer used to limit the number of returned results.
An enumeration token that, when provided in a request, returns the next batch of the results.
An enumeration token that, when provided in a request, returns the next batch of the results.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for GetDifferences<C, M, R>
impl<C, M, R> Send for GetDifferences<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for GetDifferences<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for GetDifferences<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for GetDifferences<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