aws_sdk_redshiftdata/operation/cancel_statement/_cancel_statement_input.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 CancelStatementInput {
6 /// <p>The identifier of the SQL statement to cancel. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. This identifier is returned by <code>BatchExecuteStatment</code>, <code>ExecuteStatment</code>, and <code>ListStatements</code>.</p>
7 pub id: ::std::option::Option<::std::string::String>,
8}
9impl CancelStatementInput {
10 /// <p>The identifier of the SQL statement to cancel. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. This identifier is returned by <code>BatchExecuteStatment</code>, <code>ExecuteStatment</code>, and <code>ListStatements</code>.</p>
11 pub fn id(&self) -> ::std::option::Option<&str> {
12 self.id.as_deref()
13 }
14}
15impl CancelStatementInput {
16 /// Creates a new builder-style object to manufacture [`CancelStatementInput`](crate::operation::cancel_statement::CancelStatementInput).
17 pub fn builder() -> crate::operation::cancel_statement::builders::CancelStatementInputBuilder {
18 crate::operation::cancel_statement::builders::CancelStatementInputBuilder::default()
19 }
20}
21
22/// A builder for [`CancelStatementInput`](crate::operation::cancel_statement::CancelStatementInput).
23#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
24#[non_exhaustive]
25pub struct CancelStatementInputBuilder {
26 pub(crate) id: ::std::option::Option<::std::string::String>,
27}
28impl CancelStatementInputBuilder {
29 /// <p>The identifier of the SQL statement to cancel. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. This identifier is returned by <code>BatchExecuteStatment</code>, <code>ExecuteStatment</code>, and <code>ListStatements</code>.</p>
30 /// This field is required.
31 pub fn id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
32 self.id = ::std::option::Option::Some(input.into());
33 self
34 }
35 /// <p>The identifier of the SQL statement to cancel. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. This identifier is returned by <code>BatchExecuteStatment</code>, <code>ExecuteStatment</code>, and <code>ListStatements</code>.</p>
36 pub fn set_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
37 self.id = input;
38 self
39 }
40 /// <p>The identifier of the SQL statement to cancel. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API. This identifier is returned by <code>BatchExecuteStatment</code>, <code>ExecuteStatment</code>, and <code>ListStatements</code>.</p>
41 pub fn get_id(&self) -> &::std::option::Option<::std::string::String> {
42 &self.id
43 }
44 /// Consumes the builder and constructs a [`CancelStatementInput`](crate::operation::cancel_statement::CancelStatementInput).
45 pub fn build(
46 self,
47 ) -> ::std::result::Result<crate::operation::cancel_statement::CancelStatementInput, ::aws_smithy_types::error::operation::BuildError> {
48 ::std::result::Result::Ok(crate::operation::cancel_statement::CancelStatementInput { id: self.id })
49 }
50}