#[non_exhaustive]pub struct DescribeUpdateActionsInput { /* private fields */ }
Implementations§
source§impl DescribeUpdateActionsInput
impl DescribeUpdateActionsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeUpdateActions, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeUpdateActions, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DescribeUpdateActions
>
Examples found in repository?
src/client.rs (line 7062)
7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::DescribeUpdateActions,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::DescribeUpdateActionsError>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// 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](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::DescribeUpdateActionsOutput,
aws_smithy_http::result::SdkError<crate::error::DescribeUpdateActionsError>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}
More examples
src/paginator.rs (line 1733)
1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771
pub fn send(
self,
) -> impl tokio_stream::Stream<
Item = std::result::Result<
crate::output::DescribeUpdateActionsOutput,
aws_smithy_http::result::SdkError<crate::error::DescribeUpdateActionsError>,
>,
> + Unpin {
// Move individual fields out of self for the borrow checker
let builder = self.builder;
let handle = self.handle;
aws_smithy_async::future::fn_stream::FnStream::new(move |tx| {
Box::pin(async move {
// Build the input for the first time. If required fields are missing, this is where we'll produce an early error.
let mut input = match builder
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)
{
Ok(input) => input,
Err(e) => {
let _ = tx.send(Err(e)).await;
return;
}
};
loop {
let op = match input
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)
{
Ok(op) => op,
Err(e) => {
let _ = tx.send(Err(e)).await;
return;
}
};
let resp = handle.client.call(op).await;
// If the input member is None or it was an error
let done = match resp {
Ok(ref resp) => {
let new_token = crate::lens::reflens_structure_crate_output_describe_update_actions_output_marker(resp);
let is_empty = new_token.map(|token| token.is_empty()).unwrap_or(true);
if !is_empty
&& new_token == input.marker.as_ref()
&& self.stop_on_duplicate_token
{
true
} else {
input.marker = new_token.cloned();
is_empty
}
}
Err(_) => true,
};
if tx.send(resp).await.is_err() {
// receiving end was dropped
return;
}
if done {
return;
}
}
})
})
}
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeUpdateActionsInput
.
source§impl DescribeUpdateActionsInput
impl DescribeUpdateActionsInput
sourcepub fn service_update_name(&self) -> Option<&str>
pub fn service_update_name(&self) -> Option<&str>
The unique ID of the service update
sourcepub fn replication_group_ids(&self) -> Option<&[String]>
pub fn replication_group_ids(&self) -> Option<&[String]>
The replication group IDs
sourcepub fn cache_cluster_ids(&self) -> Option<&[String]>
pub fn cache_cluster_ids(&self) -> Option<&[String]>
The cache cluster IDs
sourcepub fn engine(&self) -> Option<&str>
pub fn engine(&self) -> Option<&str>
The Elasticache engine to which the update applies. Either Redis or Memcached
sourcepub fn service_update_status(&self) -> Option<&[ServiceUpdateStatus]>
pub fn service_update_status(&self) -> Option<&[ServiceUpdateStatus]>
The status of the service update
sourcepub fn service_update_time_range(&self) -> Option<&TimeRangeFilter>
pub fn service_update_time_range(&self) -> Option<&TimeRangeFilter>
The range of time specified to search for service updates that are in available status
sourcepub fn update_action_status(&self) -> Option<&[UpdateActionStatus]>
pub fn update_action_status(&self) -> Option<&[UpdateActionStatus]>
The status of the update action.
sourcepub fn show_node_level_update_status(&self) -> Option<bool>
pub fn show_node_level_update_status(&self) -> Option<bool>
Dictates whether to include node level update status in the response
sourcepub fn max_records(&self) -> Option<i32>
pub fn max_records(&self) -> Option<i32>
The maximum number of records to include in the response
Trait Implementations§
source§impl Clone for DescribeUpdateActionsInput
impl Clone for DescribeUpdateActionsInput
source§fn clone(&self) -> DescribeUpdateActionsInput
fn clone(&self) -> DescribeUpdateActionsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more