Struct aws_sdk_ssm::input::GetOpsMetadataInput  
source · #[non_exhaustive]pub struct GetOpsMetadataInput { /* private fields */ }Implementations§
source§impl GetOpsMetadataInput
 
impl GetOpsMetadataInput
sourcepub async fn make_operation(
    &self,
    _config: &Config
) -> Result<Operation<GetOpsMetadata, AwsResponseRetryClassifier>, BuildError>
 
pub async fn make_operation(
    &self,
    _config: &Config
) -> Result<Operation<GetOpsMetadata, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<GetOpsMetadata>
Examples found in repository?
src/client.rs (line 11191)
11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219
        pub async fn customize(
            self,
        ) -> std::result::Result<
            crate::operation::customize::CustomizableOperation<
                crate::operation::GetOpsMetadata,
                aws_http::retry::AwsResponseRetryClassifier,
            >,
            aws_smithy_http::result::SdkError<crate::error::GetOpsMetadataError>,
        > {
            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::GetOpsMetadataOutput,
            aws_smithy_http::result::SdkError<crate::error::GetOpsMetadataError>,
        > {
            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 GetOpsMetadataInput.
source§impl GetOpsMetadataInput
 
impl GetOpsMetadataInput
sourcepub fn ops_metadata_arn(&self) -> Option<&str>
 
pub fn ops_metadata_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of an OpsMetadata Object to view.
sourcepub fn max_results(&self) -> Option<i32>
 
pub fn max_results(&self) -> Option<i32>
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
sourcepub fn next_token(&self) -> Option<&str>
 
pub fn next_token(&self) -> Option<&str>
A token to start the list. Use this token to get the next set of results.
Trait Implementations§
source§impl Clone for GetOpsMetadataInput
 
impl Clone for GetOpsMetadataInput
source§fn clone(&self) -> GetOpsMetadataInput
 
fn clone(&self) -> GetOpsMetadataInput
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