#[non_exhaustive]pub struct UpdateAgentInputBuilder { /* private fields */ }Expand description
A builder for UpdateAgentInput.
Implementations§
source§impl UpdateAgentInputBuilder
impl UpdateAgentInputBuilder
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 This field is required.
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. This field is required.
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. This field is required.
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.
sourcepub fn build(self) -> Result<UpdateAgentInput, BuildError>
pub fn build(self) -> Result<UpdateAgentInput, BuildError>
Consumes the builder and constructs a UpdateAgentInput.
source§impl UpdateAgentInputBuilder
impl UpdateAgentInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateAgentOutput, SdkError<UpdateAgentError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateAgentOutput, SdkError<UpdateAgentError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateAgentInputBuilder
impl Clone for UpdateAgentInputBuilder
source§fn clone(&self) -> UpdateAgentInputBuilder
fn clone(&self) -> UpdateAgentInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateAgentInputBuilder
impl Debug for UpdateAgentInputBuilder
source§impl Default for UpdateAgentInputBuilder
impl Default for UpdateAgentInputBuilder
source§fn default() -> UpdateAgentInputBuilder
fn default() -> UpdateAgentInputBuilder
source§impl PartialEq for UpdateAgentInputBuilder
impl PartialEq for UpdateAgentInputBuilder
source§fn eq(&self, other: &UpdateAgentInputBuilder) -> bool
fn eq(&self, other: &UpdateAgentInputBuilder) -> bool
self and other values to be equal, and is used
by ==.