#[non_exhaustive]pub struct StartConfigurationRecorderInput { /* private fields */ }Expand description
The input for the StartConfigurationRecorder action.
Implementations§
source§impl StartConfigurationRecorderInput
impl StartConfigurationRecorderInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartConfigurationRecorder, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartConfigurationRecorder, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartConfigurationRecorder>
Examples found in repository?
src/client.rs (line 10445)
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
}sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartConfigurationRecorderInput.
source§impl StartConfigurationRecorderInput
impl StartConfigurationRecorderInput
sourcepub fn configuration_recorder_name(&self) -> Option<&str>
pub fn configuration_recorder_name(&self) -> Option<&str>
The name of the recorder object that records each configuration change made to the resources.
Trait Implementations§
source§impl Clone for StartConfigurationRecorderInput
impl Clone for StartConfigurationRecorderInput
source§fn clone(&self) -> StartConfigurationRecorderInput
fn clone(&self) -> StartConfigurationRecorderInput
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