#[non_exhaustive]pub struct CreateAgentInputBuilder { /* private fields */ }Expand description
A builder for CreateAgentInput.
Implementations§
source§impl CreateAgentInputBuilder
impl CreateAgentInputBuilder
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 client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
Client specified token used for idempotency checks
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
Client specified token used for idempotency checks
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
Client specified token used for idempotency checks
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
Adds a key-value pair to tags.
To override the contents of this collection use set_tags.
A map of tag keys and values
A map of tag keys and values
A map of tag keys and values
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<CreateAgentInput, BuildError>
pub fn build(self) -> Result<CreateAgentInput, BuildError>
Consumes the builder and constructs a CreateAgentInput.
source§impl CreateAgentInputBuilder
impl CreateAgentInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateAgentOutput, SdkError<CreateAgentError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateAgentOutput, SdkError<CreateAgentError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateAgentInputBuilder
impl Clone for CreateAgentInputBuilder
source§fn clone(&self) -> CreateAgentInputBuilder
fn clone(&self) -> CreateAgentInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateAgentInputBuilder
impl Debug for CreateAgentInputBuilder
source§impl Default for CreateAgentInputBuilder
impl Default for CreateAgentInputBuilder
source§fn default() -> CreateAgentInputBuilder
fn default() -> CreateAgentInputBuilder
source§impl PartialEq for CreateAgentInputBuilder
impl PartialEq for CreateAgentInputBuilder
source§fn eq(&self, other: &CreateAgentInputBuilder) -> bool
fn eq(&self, other: &CreateAgentInputBuilder) -> bool
self and other values to be equal, and is used
by ==.