Struct aws_sdk_quicksight::input::DescribeIngestionInput
source · #[non_exhaustive]pub struct DescribeIngestionInput { /* private fields */ }Implementations§
source§impl DescribeIngestionInput
impl DescribeIngestionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeIngestion, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeIngestion, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DescribeIngestion>
Examples found in repository?
src/client.rs (line 8042)
8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::DescribeIngestion,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::DescribeIngestionError>,
> {
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::DescribeIngestionOutput,
aws_smithy_http::result::SdkError<crate::error::DescribeIngestionError>,
> {
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
}sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeIngestionInput.
source§impl DescribeIngestionInput
impl DescribeIngestionInput
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The Amazon Web Services account ID.
sourcepub fn data_set_id(&self) -> Option<&str>
pub fn data_set_id(&self) -> Option<&str>
The ID of the dataset used in the ingestion.
sourcepub fn ingestion_id(&self) -> Option<&str>
pub fn ingestion_id(&self) -> Option<&str>
An ID for the ingestion.
Trait Implementations§
source§impl Clone for DescribeIngestionInput
impl Clone for DescribeIngestionInput
source§fn clone(&self) -> DescribeIngestionInput
fn clone(&self) -> DescribeIngestionInput
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