aws_sdk_bedrockagentcorecontrol/client/get_agent_runtime.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`GetAgentRuntime`](crate::operation::get_agent_runtime::builders::GetAgentRuntimeFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`agent_runtime_id(impl Into<String>)`](crate::operation::get_agent_runtime::builders::GetAgentRuntimeFluentBuilder::agent_runtime_id) / [`set_agent_runtime_id(Option<String>)`](crate::operation::get_agent_runtime::builders::GetAgentRuntimeFluentBuilder::set_agent_runtime_id):<br>required: **true**<br><p>The unique identifier of the AgentCore Runtime to retrieve.</p><br>
7 /// - [`agent_runtime_version(impl Into<String>)`](crate::operation::get_agent_runtime::builders::GetAgentRuntimeFluentBuilder::agent_runtime_version) / [`set_agent_runtime_version(Option<String>)`](crate::operation::get_agent_runtime::builders::GetAgentRuntimeFluentBuilder::set_agent_runtime_version):<br>required: **false**<br><p>The version of the AgentCore Runtime to retrieve.</p><br>
8 /// - On success, responds with [`GetAgentRuntimeOutput`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput) with field(s):
9 /// - [`agent_runtime_arn(String)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::agent_runtime_arn): <p>The Amazon Resource Name (ARN) of the AgentCore Runtime.</p>
10 /// - [`agent_runtime_name(String)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::agent_runtime_name): <p>The name of the AgentCore Runtime.</p>
11 /// - [`agent_runtime_id(String)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::agent_runtime_id): <p>The unique identifier of the AgentCore Runtime.</p>
12 /// - [`agent_runtime_version(String)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::agent_runtime_version): <p>The version of the AgentCore Runtime.</p>
13 /// - [`created_at(DateTime)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::created_at): <p>The timestamp when the AgentCore Runtime was created.</p>
14 /// - [`last_updated_at(DateTime)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::last_updated_at): <p>The timestamp when the AgentCore Runtime was last updated.</p>
15 /// - [`role_arn(String)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::role_arn): <p>The IAM role ARN that provides permissions for the AgentCore Runtime.</p>
16 /// - [`network_configuration(Option<NetworkConfiguration>)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::network_configuration): <p>The network configuration for the AgentCore Runtime.</p>
17 /// - [`status(AgentRuntimeStatus)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::status): <p>The current status of the AgentCore Runtime.</p>
18 /// - [`lifecycle_configuration(Option<LifecycleConfiguration>)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::lifecycle_configuration): <p>The life cycle configuration for the AgentCore Runtime.</p>
19 /// - [`failure_reason(Option<String>)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::failure_reason): <p>The reason for failure if the AgentCore Runtime is in a failed state.</p>
20 /// - [`description(Option<String>)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::description): <p>The description of the AgentCore Runtime.</p>
21 /// - [`workload_identity_details(Option<WorkloadIdentityDetails>)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::workload_identity_details): <p>The workload identity details for the AgentCore Runtime.</p>
22 /// - [`agent_runtime_artifact(Option<AgentRuntimeArtifact>)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::agent_runtime_artifact): <p>The artifact of the AgentCore Runtime.</p>
23 /// - [`protocol_configuration(Option<ProtocolConfiguration>)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::protocol_configuration): <p>The protocol configuration for an agent runtime. This structure defines how the agent runtime communicates with clients.</p>
24 /// - [`environment_variables(Option<HashMap::<String, String>>)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::environment_variables): <p>Environment variables set in the AgentCore Runtime environment.</p>
25 /// - [`authorizer_configuration(Option<AuthorizerConfiguration>)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::authorizer_configuration): <p>The authorizer configuration for the AgentCore Runtime.</p>
26 /// - [`request_header_configuration(Option<RequestHeaderConfiguration>)`](crate::operation::get_agent_runtime::GetAgentRuntimeOutput::request_header_configuration): <p>Configuration for HTTP request headers that will be passed through to the runtime.</p>
27 /// - On failure, responds with [`SdkError<GetAgentRuntimeError>`](crate::operation::get_agent_runtime::GetAgentRuntimeError)
28 pub fn get_agent_runtime(&self) -> crate::operation::get_agent_runtime::builders::GetAgentRuntimeFluentBuilder {
29 crate::operation::get_agent_runtime::builders::GetAgentRuntimeFluentBuilder::new(self.handle.clone())
30 }
31}