pub struct Builder { /* private fields */ }Expand description
A builder for StartConfigurationRecorderInput.
Implementations§
source§impl Builder
impl Builder
sourcepub fn configuration_recorder_name(self, input: impl Into<String>) -> Self
pub fn configuration_recorder_name(self, input: impl Into<String>) -> Self
The name of the recorder object that records each configuration change made to the resources.
sourcepub fn set_configuration_recorder_name(self, input: Option<String>) -> Self
pub fn set_configuration_recorder_name(self, input: Option<String>) -> Self
The name of the recorder object that records each configuration change made to the resources.
sourcepub fn build(self) -> Result<StartConfigurationRecorderInput, BuildError>
pub fn build(self) -> Result<StartConfigurationRecorderInput, BuildError>
Consumes the builder and constructs a StartConfigurationRecorderInput.
Examples found in repository?
src/client.rs (line 10443)
10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::StartConfigurationRecorder,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::StartConfigurationRecorderError>,
> {
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::StartConfigurationRecorderOutput,
aws_smithy_http::result::SdkError<crate::error::StartConfigurationRecorderError>,
> {
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
}