pub struct ListPolicyPrincipalsRequest {
pub ascending_order: Option<bool>,
pub marker: Option<String>,
pub page_size: Option<i64>,
pub policy_name: String,
}Expand description
The input for the ListPolicyPrincipals operation.
Fields§
§ascending_order: Option<bool>Specifies the order for results. If true, the results are returned in ascending creation order.
marker: Option<String>The marker for the next set of results.
page_size: Option<i64>The result page size.
policy_name: StringThe policy name.
Trait Implementations§
Source§impl Clone for ListPolicyPrincipalsRequest
impl Clone for ListPolicyPrincipalsRequest
Source§fn clone(&self) -> ListPolicyPrincipalsRequest
fn clone(&self) -> ListPolicyPrincipalsRequest
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 ListPolicyPrincipalsRequest
impl Debug for ListPolicyPrincipalsRequest
Source§impl Default for ListPolicyPrincipalsRequest
impl Default for ListPolicyPrincipalsRequest
Source§fn default() -> ListPolicyPrincipalsRequest
fn default() -> ListPolicyPrincipalsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListPolicyPrincipalsRequest
Auto Trait Implementations§
impl Freeze for ListPolicyPrincipalsRequest
impl RefUnwindSafe for ListPolicyPrincipalsRequest
impl Send for ListPolicyPrincipalsRequest
impl Sync for ListPolicyPrincipalsRequest
impl Unpin for ListPolicyPrincipalsRequest
impl UnwindSafe for ListPolicyPrincipalsRequest
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