aws-sdk-bedrockagentruntime 1.126.0

AWS SDK for Agents for Amazon Bedrock Runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetInvocationStep`](crate::operation::get_invocation_step::builders::GetInvocationStepFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`invocation_identifier(impl Into<String>)`](crate::operation::get_invocation_step::builders::GetInvocationStepFluentBuilder::invocation_identifier) / [`set_invocation_identifier(Option<String>)`](crate::operation::get_invocation_step::builders::GetInvocationStepFluentBuilder::set_invocation_identifier):<br>required: **true**<br><p>The unique identifier for the invocation in UUID format.</p><br>
    ///   - [`invocation_step_id(impl Into<String>)`](crate::operation::get_invocation_step::builders::GetInvocationStepFluentBuilder::invocation_step_id) / [`set_invocation_step_id(Option<String>)`](crate::operation::get_invocation_step::builders::GetInvocationStepFluentBuilder::set_invocation_step_id):<br>required: **true**<br><p>The unique identifier (in UUID format) for the specific invocation step to retrieve.</p><br>
    ///   - [`session_identifier(impl Into<String>)`](crate::operation::get_invocation_step::builders::GetInvocationStepFluentBuilder::session_identifier) / [`set_session_identifier(Option<String>)`](crate::operation::get_invocation_step::builders::GetInvocationStepFluentBuilder::set_session_identifier):<br>required: **true**<br><p>The unique identifier for the invocation step's associated session. You can specify either the session's <code>sessionId</code> or its Amazon Resource Name (ARN).</p><br>
    /// - On success, responds with [`GetInvocationStepOutput`](crate::operation::get_invocation_step::GetInvocationStepOutput) with field(s):
    ///   - [`invocation_step(Option<InvocationStep>)`](crate::operation::get_invocation_step::GetInvocationStepOutput::invocation_step): <p>The complete details of the requested invocation step.</p>
    /// - On failure, responds with [`SdkError<GetInvocationStepError>`](crate::operation::get_invocation_step::GetInvocationStepError)
    pub fn get_invocation_step(&self) -> crate::operation::get_invocation_step::builders::GetInvocationStepFluentBuilder {
        crate::operation::get_invocation_step::builders::GetInvocationStepFluentBuilder::new(self.handle.clone())
    }
}