pub struct ListResourceDelegatesRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub organization_id: String,
pub resource_id: String,
}Fields§
§max_results: Option<i64>The number of maximum results in a page.
next_token: Option<String>The token used to paginate through the delegates associated with a resource.
organization_id: StringThe identifier for the organization that contains the resource for which delegates are listed.
resource_id: StringThe identifier for the resource whose delegates are listed.
Trait Implementations§
Source§impl Clone for ListResourceDelegatesRequest
impl Clone for ListResourceDelegatesRequest
Source§fn clone(&self) -> ListResourceDelegatesRequest
fn clone(&self) -> ListResourceDelegatesRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListResourceDelegatesRequest
impl Debug for ListResourceDelegatesRequest
Source§impl Default for ListResourceDelegatesRequest
impl Default for ListResourceDelegatesRequest
Source§fn default() -> ListResourceDelegatesRequest
fn default() -> ListResourceDelegatesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListResourceDelegatesRequest
impl PartialEq for ListResourceDelegatesRequest
Source§fn eq(&self, other: &ListResourceDelegatesRequest) -> bool
fn eq(&self, other: &ListResourceDelegatesRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListResourceDelegatesRequest
Auto Trait Implementations§
impl Freeze for ListResourceDelegatesRequest
impl RefUnwindSafe for ListResourceDelegatesRequest
impl Send for ListResourceDelegatesRequest
impl Sync for ListResourceDelegatesRequest
impl Unpin for ListResourceDelegatesRequest
impl UnwindSafe for ListResourceDelegatesRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more