Struct aws_sdk_ssm::operation::describe_document_permission::DescribeDocumentPermissionInput
source · #[non_exhaustive]pub struct DescribeDocumentPermissionInput {
pub name: Option<String>,
pub permission_type: Option<DocumentPermissionType>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
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.name: Option<String>
The name of the document for which you are the owner.
permission_type: Option<DocumentPermissionType>
The permission type for the document. The permission type can be Share.
max_results: Option<i32>
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
next_token: Option<String>
The token for the next set of items to return. (You received this token from a previous call.)
Implementations§
source§impl DescribeDocumentPermissionInput
impl DescribeDocumentPermissionInput
sourcepub fn permission_type(&self) -> Option<&DocumentPermissionType>
pub fn permission_type(&self) -> Option<&DocumentPermissionType>
The permission type for the document. The permission type can be Share.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of items to return. (You received this token from a previous call.)
source§impl DescribeDocumentPermissionInput
impl DescribeDocumentPermissionInput
sourcepub fn builder() -> DescribeDocumentPermissionInputBuilder
pub fn builder() -> DescribeDocumentPermissionInputBuilder
Creates a new builder-style object to manufacture DescribeDocumentPermissionInput
.
Trait Implementations§
source§impl Clone for DescribeDocumentPermissionInput
impl Clone for DescribeDocumentPermissionInput
source§fn clone(&self) -> DescribeDocumentPermissionInput
fn clone(&self) -> DescribeDocumentPermissionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeDocumentPermissionInput
impl PartialEq for DescribeDocumentPermissionInput
source§fn eq(&self, other: &DescribeDocumentPermissionInput) -> bool
fn eq(&self, other: &DescribeDocumentPermissionInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeDocumentPermissionInput
Auto Trait Implementations§
impl Freeze for DescribeDocumentPermissionInput
impl RefUnwindSafe for DescribeDocumentPermissionInput
impl Send for DescribeDocumentPermissionInput
impl Sync for DescribeDocumentPermissionInput
impl Unpin for DescribeDocumentPermissionInput
impl UnwindSafe for DescribeDocumentPermissionInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more