#[non_exhaustive]pub struct ListResourceDelegatesInput {
pub organization_id: Option<String>,
pub resource_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.organization_id: Option<String>
The identifier for the organization that contains the resource for which delegates are listed.
resource_id: Option<String>
The identifier for the resource whose delegates are listed.
The identifier can accept ResourceId, Resourcename, or email. The following identity formats are available:
-
Resource ID: r-0123456789a0123456789b0123456789
-
Email address: resource@domain.tld
-
Resource name: resource
next_token: Option<String>
The token used to paginate through the delegates associated with a resource.
max_results: Option<i32>
The number of maximum results in a page.
Implementations§
source§impl ListResourceDelegatesInput
impl ListResourceDelegatesInput
sourcepub fn organization_id(&self) -> Option<&str>
pub fn organization_id(&self) -> Option<&str>
The identifier for the organization that contains the resource for which delegates are listed.
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
The identifier for the resource whose delegates are listed.
The identifier can accept ResourceId, Resourcename, or email. The following identity formats are available:
-
Resource ID: r-0123456789a0123456789b0123456789
-
Email address: resource@domain.tld
-
Resource name: resource
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token used to paginate through the delegates associated with a resource.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The number of maximum results in a page.
source§impl ListResourceDelegatesInput
impl ListResourceDelegatesInput
sourcepub fn builder() -> ListResourceDelegatesInputBuilder
pub fn builder() -> ListResourceDelegatesInputBuilder
Creates a new builder-style object to manufacture ListResourceDelegatesInput
.
Trait Implementations§
source§impl Clone for ListResourceDelegatesInput
impl Clone for ListResourceDelegatesInput
source§fn clone(&self) -> ListResourceDelegatesInput
fn clone(&self) -> ListResourceDelegatesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListResourceDelegatesInput
impl Debug for ListResourceDelegatesInput
source§impl PartialEq for ListResourceDelegatesInput
impl PartialEq for ListResourceDelegatesInput
source§fn eq(&self, other: &ListResourceDelegatesInput) -> bool
fn eq(&self, other: &ListResourceDelegatesInput) -> bool
self
and other
values to be equal, and is used
by ==
.