#[non_exhaustive]pub struct ListNamespacesInput {
pub aws_account_id: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.aws_account_id: Option<String>The ID for the Amazon Web Services account that contains the Amazon QuickSight namespaces that you want to list.
next_token: Option<String>A unique pagination token that can be used in a subsequent request. You will receive a pagination token in the response body of a previous ListNameSpaces API call if there is more data that can be returned. To receive the data, make another ListNamespaces API call with the returned token to retrieve the next page of data. Each token is valid for 24 hours. If you try to make a ListNamespaces API call with an expired token, you will receive a HTTP 400 InvalidNextTokenException error.
max_results: Option<i32>The maximum number of results to return.
Implementations§
source§impl ListNamespacesInput
impl ListNamespacesInput
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID for the Amazon Web Services account that contains the Amazon QuickSight namespaces that you want to list.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A unique pagination token that can be used in a subsequent request. You will receive a pagination token in the response body of a previous ListNameSpaces API call if there is more data that can be returned. To receive the data, make another ListNamespaces API call with the returned token to retrieve the next page of data. Each token is valid for 24 hours. If you try to make a ListNamespaces API call with an expired token, you will receive a HTTP 400 InvalidNextTokenException error.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return.
source§impl ListNamespacesInput
impl ListNamespacesInput
sourcepub fn builder() -> ListNamespacesInputBuilder
pub fn builder() -> ListNamespacesInputBuilder
Creates a new builder-style object to manufacture ListNamespacesInput.
Trait Implementations§
source§impl Clone for ListNamespacesInput
impl Clone for ListNamespacesInput
source§fn clone(&self) -> ListNamespacesInput
fn clone(&self) -> ListNamespacesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListNamespacesInput
impl Debug for ListNamespacesInput
source§impl PartialEq for ListNamespacesInput
impl PartialEq for ListNamespacesInput
source§fn eq(&self, other: &ListNamespacesInput) -> bool
fn eq(&self, other: &ListNamespacesInput) -> bool
self and other values to be equal, and is used
by ==.