aws_sdk_sso/operation/list_accounts/_list_accounts_input.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq)]
pub struct ListAccountsInput {
/// <p>(Optional) When requesting subsequent pages, this is the page token from the previous response output.</p>
pub next_token: ::std::option::Option<::std::string::String>,
/// <p>This is the number of items clients can request per page.</p>
pub max_results: ::std::option::Option<i32>,
/// <p>The token issued by the <code>CreateToken</code> API call. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html">CreateToken</a> in the <i>IAM Identity Center OIDC API Reference Guide</i>.</p>
pub access_token: ::std::option::Option<::std::string::String>,
}
impl ListAccountsInput {
/// <p>(Optional) When requesting subsequent pages, this is the page token from the previous response output.</p>
pub fn next_token(&self) -> ::std::option::Option<&str> {
self.next_token.as_deref()
}
/// <p>This is the number of items clients can request per page.</p>
pub fn max_results(&self) -> ::std::option::Option<i32> {
self.max_results
}
/// <p>The token issued by the <code>CreateToken</code> API call. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html">CreateToken</a> in the <i>IAM Identity Center OIDC API Reference Guide</i>.</p>
pub fn access_token(&self) -> ::std::option::Option<&str> {
self.access_token.as_deref()
}
}
impl ::std::fmt::Debug for ListAccountsInput {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
let mut formatter = f.debug_struct("ListAccountsInput");
formatter.field("next_token", &self.next_token);
formatter.field("max_results", &self.max_results);
formatter.field("access_token", &"*** Sensitive Data Redacted ***");
formatter.finish()
}
}
impl ListAccountsInput {
/// Creates a new builder-style object to manufacture [`ListAccountsInput`](crate::operation::list_accounts::ListAccountsInput).
pub fn builder() -> crate::operation::list_accounts::builders::ListAccountsInputBuilder {
crate::operation::list_accounts::builders::ListAccountsInputBuilder::default()
}
}
/// A builder for [`ListAccountsInput`](crate::operation::list_accounts::ListAccountsInput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default)]
#[non_exhaustive]
pub struct ListAccountsInputBuilder {
pub(crate) next_token: ::std::option::Option<::std::string::String>,
pub(crate) max_results: ::std::option::Option<i32>,
pub(crate) access_token: ::std::option::Option<::std::string::String>,
}
impl ListAccountsInputBuilder {
/// <p>(Optional) When requesting subsequent pages, this is the page token from the previous response output.</p>
pub fn next_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.next_token = ::std::option::Option::Some(input.into());
self
}
/// <p>(Optional) When requesting subsequent pages, this is the page token from the previous response output.</p>
pub fn set_next_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.next_token = input;
self
}
/// <p>(Optional) When requesting subsequent pages, this is the page token from the previous response output.</p>
pub fn get_next_token(&self) -> &::std::option::Option<::std::string::String> {
&self.next_token
}
/// <p>This is the number of items clients can request per page.</p>
pub fn max_results(mut self, input: i32) -> Self {
self.max_results = ::std::option::Option::Some(input);
self
}
/// <p>This is the number of items clients can request per page.</p>
pub fn set_max_results(mut self, input: ::std::option::Option<i32>) -> Self {
self.max_results = input;
self
}
/// <p>This is the number of items clients can request per page.</p>
pub fn get_max_results(&self) -> &::std::option::Option<i32> {
&self.max_results
}
/// <p>The token issued by the <code>CreateToken</code> API call. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html">CreateToken</a> in the <i>IAM Identity Center OIDC API Reference Guide</i>.</p>
/// This field is required.
pub fn access_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.access_token = ::std::option::Option::Some(input.into());
self
}
/// <p>The token issued by the <code>CreateToken</code> API call. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html">CreateToken</a> in the <i>IAM Identity Center OIDC API Reference Guide</i>.</p>
pub fn set_access_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.access_token = input;
self
}
/// <p>The token issued by the <code>CreateToken</code> API call. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/OIDCAPIReference/API_CreateToken.html">CreateToken</a> in the <i>IAM Identity Center OIDC API Reference Guide</i>.</p>
pub fn get_access_token(&self) -> &::std::option::Option<::std::string::String> {
&self.access_token
}
/// Consumes the builder and constructs a [`ListAccountsInput`](crate::operation::list_accounts::ListAccountsInput).
pub fn build(
self,
) -> ::std::result::Result<crate::operation::list_accounts::ListAccountsInput, ::aws_smithy_types::error::operation::BuildError> {
::std::result::Result::Ok(crate::operation::list_accounts::ListAccountsInput {
next_token: self.next_token,
max_results: self.max_results,
access_token: self.access_token,
})
}
}
impl ::std::fmt::Debug for ListAccountsInputBuilder {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
let mut formatter = f.debug_struct("ListAccountsInputBuilder");
formatter.field("next_token", &self.next_token);
formatter.field("max_results", &self.max_results);
formatter.field("access_token", &"*** Sensitive Data Redacted ***");
formatter.finish()
}
}