#[non_exhaustive]pub struct PermissionSetProvisioningStatus { /* private fields */ }
Expand description
A structure that is used to provide the status of the provisioning operation for a specified permission set.
Implementations§
source§impl PermissionSetProvisioningStatus
impl PermissionSetProvisioningStatus
sourcepub fn status(&self) -> Option<&StatusValues>
pub fn status(&self) -> Option<&StatusValues>
The status of the permission set provisioning process.
sourcepub fn request_id(&self) -> Option<&str>
pub fn request_id(&self) -> Option<&str>
The identifier for tracking the request operation that is generated by the universally unique identifier (UUID) workflow.
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The identifier of the AWS account from which to list the assignments.
sourcepub fn permission_set_arn(&self) -> Option<&str>
pub fn permission_set_arn(&self) -> Option<&str>
The ARN of the permission set that is being provisioned. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
The message that contains an error or exception in case of an operation failure.
sourcepub fn created_date(&self) -> Option<&DateTime>
pub fn created_date(&self) -> Option<&DateTime>
The date that the permission set was created.
source§impl PermissionSetProvisioningStatus
impl PermissionSetProvisioningStatus
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PermissionSetProvisioningStatus
.
Trait Implementations§
source§impl Clone for PermissionSetProvisioningStatus
impl Clone for PermissionSetProvisioningStatus
source§fn clone(&self) -> PermissionSetProvisioningStatus
fn clone(&self) -> PermissionSetProvisioningStatus
Returns a copy 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 PartialEq<PermissionSetProvisioningStatus> for PermissionSetProvisioningStatus
impl PartialEq<PermissionSetProvisioningStatus> for PermissionSetProvisioningStatus
source§fn eq(&self, other: &PermissionSetProvisioningStatus) -> bool
fn eq(&self, other: &PermissionSetProvisioningStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.