Struct aws_sdk_iot::output::GetPolicyVersionOutput
source · #[non_exhaustive]pub struct GetPolicyVersionOutput { /* private fields */ }
Expand description
The output from the GetPolicyVersion operation.
Implementations§
source§impl GetPolicyVersionOutput
impl GetPolicyVersionOutput
sourcepub fn policy_arn(&self) -> Option<&str>
pub fn policy_arn(&self) -> Option<&str>
The policy ARN.
sourcepub fn policy_name(&self) -> Option<&str>
pub fn policy_name(&self) -> Option<&str>
The policy name.
sourcepub fn policy_document(&self) -> Option<&str>
pub fn policy_document(&self) -> Option<&str>
The JSON document that describes the policy.
sourcepub fn policy_version_id(&self) -> Option<&str>
pub fn policy_version_id(&self) -> Option<&str>
The policy version ID.
sourcepub fn is_default_version(&self) -> bool
pub fn is_default_version(&self) -> bool
Specifies whether the policy version is the default.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The date the policy was created.
sourcepub fn last_modified_date(&self) -> Option<&DateTime>
pub fn last_modified_date(&self) -> Option<&DateTime>
The date the policy was last modified.
sourcepub fn generation_id(&self) -> Option<&str>
pub fn generation_id(&self) -> Option<&str>
The generation ID of the policy version.
source§impl GetPolicyVersionOutput
impl GetPolicyVersionOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetPolicyVersionOutput
.
Trait Implementations§
source§impl Clone for GetPolicyVersionOutput
impl Clone for GetPolicyVersionOutput
source§fn clone(&self) -> GetPolicyVersionOutput
fn clone(&self) -> GetPolicyVersionOutput
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 Debug for GetPolicyVersionOutput
impl Debug for GetPolicyVersionOutput
source§impl PartialEq<GetPolicyVersionOutput> for GetPolicyVersionOutput
impl PartialEq<GetPolicyVersionOutput> for GetPolicyVersionOutput
source§fn eq(&self, other: &GetPolicyVersionOutput) -> bool
fn eq(&self, other: &GetPolicyVersionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.