aws-sdk-bedrockagentcorecontrol 1.4.0

AWS SDK for Amazon Bedrock Agent Core Control Plane Fronting Layer
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 agent 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 agent 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 agent 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 agent 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>
    /// - 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 agent 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 agent 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 agent runtime.</p>
    ///   - [`status(AgentEndpointStatus)`](crate::operation::create_agent_runtime_endpoint::CreateAgentRuntimeEndpointOutput::status): <p>The current status of the agent runtime endpoint.</p>
    ///   - [`created_at(DateTime)`](crate::operation::create_agent_runtime_endpoint::CreateAgentRuntimeEndpointOutput::created_at): <p>The timestamp when the agent 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())
    }
}