pub struct UpdateAgentFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateAgent.
Updates an existing Amazon Bedrock Agent
Implementations§
source§impl UpdateAgentFluentBuilder
impl UpdateAgentFluentBuilder
sourcepub fn as_input(&self) -> &UpdateAgentInputBuilder
pub fn as_input(&self) -> &UpdateAgentInputBuilder
Access the UpdateAgent as a reference.
sourcepub async fn send(
self
) -> Result<UpdateAgentOutput, SdkError<UpdateAgentError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateAgentOutput, SdkError<UpdateAgentError, HttpResponse>>
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, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateAgentOutput, UpdateAgentError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateAgentOutput, UpdateAgentError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn agent_id(self, input: impl Into<String>) -> Self
pub fn agent_id(self, input: impl Into<String>) -> Self
Id generated at the server side when an Agent is created
sourcepub fn set_agent_id(self, input: Option<String>) -> Self
pub fn set_agent_id(self, input: Option<String>) -> Self
Id generated at the server side when an Agent is created
sourcepub fn get_agent_id(&self) -> &Option<String>
pub fn get_agent_id(&self) -> &Option<String>
Id generated at the server side when an Agent is created
sourcepub fn agent_name(self, input: impl Into<String>) -> Self
pub fn agent_name(self, input: impl Into<String>) -> Self
Name for a resource.
sourcepub fn set_agent_name(self, input: Option<String>) -> Self
pub fn set_agent_name(self, input: Option<String>) -> Self
Name for a resource.
sourcepub fn get_agent_name(&self) -> &Option<String>
pub fn get_agent_name(&self) -> &Option<String>
Name for a resource.
sourcepub fn instruction(self, input: impl Into<String>) -> Self
pub fn instruction(self, input: impl Into<String>) -> Self
Instruction for the agent.
sourcepub fn set_instruction(self, input: Option<String>) -> Self
pub fn set_instruction(self, input: Option<String>) -> Self
Instruction for the agent.
sourcepub fn get_instruction(&self) -> &Option<String>
pub fn get_instruction(&self) -> &Option<String>
Instruction for the agent.
sourcepub fn foundation_model(self, input: impl Into<String>) -> Self
pub fn foundation_model(self, input: impl Into<String>) -> Self
ARN or name of a Bedrock model.
sourcepub fn set_foundation_model(self, input: Option<String>) -> Self
pub fn set_foundation_model(self, input: Option<String>) -> Self
ARN or name of a Bedrock model.
sourcepub fn get_foundation_model(&self) -> &Option<String>
pub fn get_foundation_model(&self) -> &Option<String>
ARN or name of a Bedrock model.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
Description of the Resource.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
Description of the Resource.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
Description of the Resource.
sourcepub fn idle_session_ttl_in_seconds(self, input: i32) -> Self
pub fn idle_session_ttl_in_seconds(self, input: i32) -> Self
Max Session Time.
sourcepub fn set_idle_session_ttl_in_seconds(self, input: Option<i32>) -> Self
pub fn set_idle_session_ttl_in_seconds(self, input: Option<i32>) -> Self
Max Session Time.
sourcepub fn get_idle_session_ttl_in_seconds(&self) -> &Option<i32>
pub fn get_idle_session_ttl_in_seconds(&self) -> &Option<i32>
Max Session Time.
sourcepub fn agent_resource_role_arn(self, input: impl Into<String>) -> Self
pub fn agent_resource_role_arn(self, input: impl Into<String>) -> Self
ARN of a IAM role.
sourcepub fn set_agent_resource_role_arn(self, input: Option<String>) -> Self
pub fn set_agent_resource_role_arn(self, input: Option<String>) -> Self
ARN of a IAM role.
sourcepub fn get_agent_resource_role_arn(&self) -> &Option<String>
pub fn get_agent_resource_role_arn(&self) -> &Option<String>
ARN of a IAM role.
sourcepub fn customer_encryption_key_arn(self, input: impl Into<String>) -> Self
pub fn customer_encryption_key_arn(self, input: impl Into<String>) -> Self
A KMS key ARN
sourcepub fn set_customer_encryption_key_arn(self, input: Option<String>) -> Self
pub fn set_customer_encryption_key_arn(self, input: Option<String>) -> Self
A KMS key ARN
sourcepub fn get_customer_encryption_key_arn(&self) -> &Option<String>
pub fn get_customer_encryption_key_arn(&self) -> &Option<String>
A KMS key ARN
sourcepub fn prompt_override_configuration(
self,
input: PromptOverrideConfiguration
) -> Self
pub fn prompt_override_configuration( self, input: PromptOverrideConfiguration ) -> Self
Configuration for prompt override.
sourcepub fn set_prompt_override_configuration(
self,
input: Option<PromptOverrideConfiguration>
) -> Self
pub fn set_prompt_override_configuration( self, input: Option<PromptOverrideConfiguration> ) -> Self
Configuration for prompt override.
sourcepub fn get_prompt_override_configuration(
&self
) -> &Option<PromptOverrideConfiguration>
pub fn get_prompt_override_configuration( &self ) -> &Option<PromptOverrideConfiguration>
Configuration for prompt override.
Trait Implementations§
source§impl Clone for UpdateAgentFluentBuilder
impl Clone for UpdateAgentFluentBuilder
source§fn clone(&self) -> UpdateAgentFluentBuilder
fn clone(&self) -> UpdateAgentFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more