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 ==
.