aws-sdk-bedrockagentcorecontrol 1.44.0

AWS SDK for Amazon Bedrock AgentCore Control
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetTokenVault`](crate::operation::get_token_vault::builders::GetTokenVaultFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`token_vault_id(impl Into<String>)`](crate::operation::get_token_vault::builders::GetTokenVaultFluentBuilder::token_vault_id) / [`set_token_vault_id(Option<String>)`](crate::operation::get_token_vault::builders::GetTokenVaultFluentBuilder::set_token_vault_id):<br>required: **false**<br><p>The unique identifier of the token vault to retrieve.</p><br>
    /// - On success, responds with [`GetTokenVaultOutput`](crate::operation::get_token_vault::GetTokenVaultOutput) with field(s):
    ///   - [`token_vault_id(String)`](crate::operation::get_token_vault::GetTokenVaultOutput::token_vault_id): <p>The ID of the token vault.</p>
    ///   - [`kms_configuration(Option<KmsConfiguration>)`](crate::operation::get_token_vault::GetTokenVaultOutput::kms_configuration): <p>The KMS configuration for the token vault.</p>
    ///   - [`last_modified_date(DateTime)`](crate::operation::get_token_vault::GetTokenVaultOutput::last_modified_date): <p>The timestamp when the token vault was last modified.</p>
    /// - On failure, responds with [`SdkError<GetTokenVaultError>`](crate::operation::get_token_vault::GetTokenVaultError)
    pub fn get_token_vault(&self) -> crate::operation::get_token_vault::builders::GetTokenVaultFluentBuilder {
        crate::operation::get_token_vault::builders::GetTokenVaultFluentBuilder::new(self.handle.clone())
    }
}