aws_sdk_iotmanagedintegrations/client/
get_credential_locker.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`GetCredentialLocker`](crate::operation::get_credential_locker::builders::GetCredentialLockerFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`identifier(impl Into<String>)`](crate::operation::get_credential_locker::builders::GetCredentialLockerFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::get_credential_locker::builders::GetCredentialLockerFluentBuilder::set_identifier):<br>required: **true**<br><p>The identifier of the credential locker.</p><br>
7    /// - On success, responds with [`GetCredentialLockerOutput`](crate::operation::get_credential_locker::GetCredentialLockerOutput) with field(s):
8    ///   - [`id(Option<String>)`](crate::operation::get_credential_locker::GetCredentialLockerOutput::id): <p>The identifier of the credential locker.</p>
9    ///   - [`arn(Option<String>)`](crate::operation::get_credential_locker::GetCredentialLockerOutput::arn): <p>The Amazon Resource Name (ARN) of the credential locker.</p>
10    ///   - [`name(Option<String>)`](crate::operation::get_credential_locker::GetCredentialLockerOutput::name): <p>The name of the credential locker.</p>
11    ///   - [`created_at(Option<DateTime>)`](crate::operation::get_credential_locker::GetCredentialLockerOutput::created_at): <p>The timestamp value of when the credential locker requset occurred.</p>
12    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_credential_locker::GetCredentialLockerOutput::tags): <p>A set of key/value pairs that are used to manage the credential locker.</p>
13    /// - On failure, responds with [`SdkError<GetCredentialLockerError>`](crate::operation::get_credential_locker::GetCredentialLockerError)
14    pub fn get_credential_locker(&self) -> crate::operation::get_credential_locker::builders::GetCredentialLockerFluentBuilder {
15        crate::operation::get_credential_locker::builders::GetCredentialLockerFluentBuilder::new(self.handle.clone())
16    }
17}