aws-sdk-bedrockagentcorecontrol 1.41.0

AWS SDK for Amazon Bedrock AgentCore Control
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreateAgentRuntimeEndpoint`](crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`agent_runtime_id(impl Into<String>)`](crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder::agent_runtime_id) / [`set_agent_runtime_id(Option<String>)`](crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder::set_agent_runtime_id):<br>required: **true**<br><p>The unique identifier of the AgentCore Runtime to create an endpoint for.</p><br>
    ///   - [`name(impl Into<String>)`](crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder::set_name):<br>required: **true**<br><p>The name of the AgentCore Runtime endpoint.</p><br>
    ///   - [`agent_runtime_version(impl Into<String>)`](crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder::agent_runtime_version) / [`set_agent_runtime_version(Option<String>)`](crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder::set_agent_runtime_version):<br>required: **false**<br><p>The version of the AgentCore Runtime to use for the endpoint.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder::set_description):<br>required: **false**<br><p>The description of the AgentCore Runtime endpoint.</p><br>
    ///   - [`client_token(impl Into<String>)`](crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique, case-sensitive identifier to ensure idempotency of the request.</p><br>
    ///   - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder::set_tags):<br>required: **false**<br><p>A map of tag keys and values to assign to the agent runtime endpoint. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.</p><br>
    /// - On success, responds with [`CreateAgentRuntimeEndpointOutput`](crate::operation::create_agent_runtime_endpoint::CreateAgentRuntimeEndpointOutput) with field(s):
    ///   - [`target_version(String)`](crate::operation::create_agent_runtime_endpoint::CreateAgentRuntimeEndpointOutput::target_version): <p>The target version of the AgentCore Runtime for the endpoint.</p>
    ///   - [`agent_runtime_endpoint_arn(String)`](crate::operation::create_agent_runtime_endpoint::CreateAgentRuntimeEndpointOutput::agent_runtime_endpoint_arn): <p>The Amazon Resource Name (ARN) of the AgentCore Runtime endpoint.</p>
    ///   - [`agent_runtime_arn(String)`](crate::operation::create_agent_runtime_endpoint::CreateAgentRuntimeEndpointOutput::agent_runtime_arn): <p>The Amazon Resource Name (ARN) of the AgentCore Runtime.</p>
    ///   - [`agent_runtime_id(Option<String>)`](crate::operation::create_agent_runtime_endpoint::CreateAgentRuntimeEndpointOutput::agent_runtime_id): <p>The unique identifier of the AgentCore Runtime.</p>
    ///   - [`endpoint_name(Option<String>)`](crate::operation::create_agent_runtime_endpoint::CreateAgentRuntimeEndpointOutput::endpoint_name): <p>The name of the AgentCore Runtime endpoint.</p>
    ///   - [`status(AgentRuntimeEndpointStatus)`](crate::operation::create_agent_runtime_endpoint::CreateAgentRuntimeEndpointOutput::status): <p>The current status of the AgentCore Runtime endpoint.</p>
    ///   - [`created_at(DateTime)`](crate::operation::create_agent_runtime_endpoint::CreateAgentRuntimeEndpointOutput::created_at): <p>The timestamp when the AgentCore Runtime endpoint was created.</p>
    /// - On failure, responds with [`SdkError<CreateAgentRuntimeEndpointError>`](crate::operation::create_agent_runtime_endpoint::CreateAgentRuntimeEndpointError)
    pub fn create_agent_runtime_endpoint(
        &self,
    ) -> crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder {
        crate::operation::create_agent_runtime_endpoint::builders::CreateAgentRuntimeEndpointFluentBuilder::new(self.handle.clone())
    }
}