aws_sdk_bedrockagentruntime/operation/create_invocation/
_create_invocation_output.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2#[allow(missing_docs)] // documentation missing in model
3#[non_exhaustive]
4#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
5pub struct CreateInvocationOutput {
6    /// <p>The unique identifier for the session associated with the invocation.</p>
7    pub session_id: ::std::string::String,
8    /// <p>The unique identifier for the invocation.</p>
9    pub invocation_id: ::std::string::String,
10    /// <p>The timestamp for when the invocation was created.</p>
11    pub created_at: ::aws_smithy_types::DateTime,
12    _request_id: Option<String>,
13}
14impl CreateInvocationOutput {
15    /// <p>The unique identifier for the session associated with the invocation.</p>
16    pub fn session_id(&self) -> &str {
17        use std::ops::Deref;
18        self.session_id.deref()
19    }
20    /// <p>The unique identifier for the invocation.</p>
21    pub fn invocation_id(&self) -> &str {
22        use std::ops::Deref;
23        self.invocation_id.deref()
24    }
25    /// <p>The timestamp for when the invocation was created.</p>
26    pub fn created_at(&self) -> &::aws_smithy_types::DateTime {
27        &self.created_at
28    }
29}
30impl ::aws_types::request_id::RequestId for CreateInvocationOutput {
31    fn request_id(&self) -> Option<&str> {
32        self._request_id.as_deref()
33    }
34}
35impl CreateInvocationOutput {
36    /// Creates a new builder-style object to manufacture [`CreateInvocationOutput`](crate::operation::create_invocation::CreateInvocationOutput).
37    pub fn builder() -> crate::operation::create_invocation::builders::CreateInvocationOutputBuilder {
38        crate::operation::create_invocation::builders::CreateInvocationOutputBuilder::default()
39    }
40}
41
42/// A builder for [`CreateInvocationOutput`](crate::operation::create_invocation::CreateInvocationOutput).
43#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
44#[non_exhaustive]
45pub struct CreateInvocationOutputBuilder {
46    pub(crate) session_id: ::std::option::Option<::std::string::String>,
47    pub(crate) invocation_id: ::std::option::Option<::std::string::String>,
48    pub(crate) created_at: ::std::option::Option<::aws_smithy_types::DateTime>,
49    _request_id: Option<String>,
50}
51impl CreateInvocationOutputBuilder {
52    /// <p>The unique identifier for the session associated with the invocation.</p>
53    /// This field is required.
54    pub fn session_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
55        self.session_id = ::std::option::Option::Some(input.into());
56        self
57    }
58    /// <p>The unique identifier for the session associated with the invocation.</p>
59    pub fn set_session_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
60        self.session_id = input;
61        self
62    }
63    /// <p>The unique identifier for the session associated with the invocation.</p>
64    pub fn get_session_id(&self) -> &::std::option::Option<::std::string::String> {
65        &self.session_id
66    }
67    /// <p>The unique identifier for the invocation.</p>
68    /// This field is required.
69    pub fn invocation_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
70        self.invocation_id = ::std::option::Option::Some(input.into());
71        self
72    }
73    /// <p>The unique identifier for the invocation.</p>
74    pub fn set_invocation_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
75        self.invocation_id = input;
76        self
77    }
78    /// <p>The unique identifier for the invocation.</p>
79    pub fn get_invocation_id(&self) -> &::std::option::Option<::std::string::String> {
80        &self.invocation_id
81    }
82    /// <p>The timestamp for when the invocation was created.</p>
83    /// This field is required.
84    pub fn created_at(mut self, input: ::aws_smithy_types::DateTime) -> Self {
85        self.created_at = ::std::option::Option::Some(input);
86        self
87    }
88    /// <p>The timestamp for when the invocation was created.</p>
89    pub fn set_created_at(mut self, input: ::std::option::Option<::aws_smithy_types::DateTime>) -> Self {
90        self.created_at = input;
91        self
92    }
93    /// <p>The timestamp for when the invocation was created.</p>
94    pub fn get_created_at(&self) -> &::std::option::Option<::aws_smithy_types::DateTime> {
95        &self.created_at
96    }
97    pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
98        self._request_id = Some(request_id.into());
99        self
100    }
101
102    pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
103        self._request_id = request_id;
104        self
105    }
106    /// Consumes the builder and constructs a [`CreateInvocationOutput`](crate::operation::create_invocation::CreateInvocationOutput).
107    /// This method will fail if any of the following fields are not set:
108    /// - [`session_id`](crate::operation::create_invocation::builders::CreateInvocationOutputBuilder::session_id)
109    /// - [`invocation_id`](crate::operation::create_invocation::builders::CreateInvocationOutputBuilder::invocation_id)
110    /// - [`created_at`](crate::operation::create_invocation::builders::CreateInvocationOutputBuilder::created_at)
111    pub fn build(
112        self,
113    ) -> ::std::result::Result<crate::operation::create_invocation::CreateInvocationOutput, ::aws_smithy_types::error::operation::BuildError> {
114        ::std::result::Result::Ok(crate::operation::create_invocation::CreateInvocationOutput {
115            session_id: self.session_id.ok_or_else(|| {
116                ::aws_smithy_types::error::operation::BuildError::missing_field(
117                    "session_id",
118                    "session_id was not specified but it is required when building CreateInvocationOutput",
119                )
120            })?,
121            invocation_id: self.invocation_id.ok_or_else(|| {
122                ::aws_smithy_types::error::operation::BuildError::missing_field(
123                    "invocation_id",
124                    "invocation_id was not specified but it is required when building CreateInvocationOutput",
125                )
126            })?,
127            created_at: self.created_at.ok_or_else(|| {
128                ::aws_smithy_types::error::operation::BuildError::missing_field(
129                    "created_at",
130                    "created_at was not specified but it is required when building CreateInvocationOutput",
131                )
132            })?,
133            _request_id: self._request_id,
134        })
135    }
136}