Struct aws_sdk_iam::model::PolicyVersion
source · [−]#[non_exhaustive]pub struct PolicyVersion {
pub document: Option<String>,
pub version_id: Option<String>,
pub is_default_version: bool,
pub create_date: Option<DateTime>,
}
Expand description
Contains information about a version of a managed policy.
This data type is used as a response element in the CreatePolicyVersion
, GetPolicyVersion
, ListPolicyVersions
, and GetAccountAuthorizationDetails
operations.
For more information about managed policies, refer to Managed policies and inline policies in the IAM User Guide.
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.document: Option<String>
The policy document.
The policy document is returned in the response to the GetPolicyVersion
and GetAccountAuthorizationDetails
operations. It is not returned in the response to the CreatePolicyVersion
or ListPolicyVersions
operations.
The policy document returned in this structure is URL-encoded compliant with RFC 3986. You can use a URL decoding method to convert the policy back to plain JSON text. For example, if you use Java, you can use the decode
method of the java.net.URLDecoder
utility class in the Java SDK. Other languages and SDKs provide similar functionality.
version_id: Option<String>
The identifier for the policy version.
Policy version identifiers always begin with v
(always lowercase). When a policy is created, the first policy version is v1
.
is_default_version: bool
Specifies whether the policy version is set as the policy's default version.
create_date: Option<DateTime>
The date and time, in ISO 8601 date-time format, when the policy version was created.
Implementations
sourceimpl PolicyVersion
impl PolicyVersion
sourcepub fn document(&self) -> Option<&str>
pub fn document(&self) -> Option<&str>
The policy document.
The policy document is returned in the response to the GetPolicyVersion
and GetAccountAuthorizationDetails
operations. It is not returned in the response to the CreatePolicyVersion
or ListPolicyVersions
operations.
The policy document returned in this structure is URL-encoded compliant with RFC 3986. You can use a URL decoding method to convert the policy back to plain JSON text. For example, if you use Java, you can use the decode
method of the java.net.URLDecoder
utility class in the Java SDK. Other languages and SDKs provide similar functionality.
sourcepub fn version_id(&self) -> Option<&str>
pub fn version_id(&self) -> Option<&str>
The identifier for the policy version.
Policy version identifiers always begin with v
(always lowercase). When a policy is created, the first policy version is v1
.
sourcepub fn is_default_version(&self) -> bool
pub fn is_default_version(&self) -> bool
Specifies whether the policy version is set as the policy's default version.
sourcepub fn create_date(&self) -> Option<&DateTime>
pub fn create_date(&self) -> Option<&DateTime>
The date and time, in ISO 8601 date-time format, when the policy version was created.
sourceimpl PolicyVersion
impl PolicyVersion
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PolicyVersion
Trait Implementations
sourceimpl Clone for PolicyVersion
impl Clone for PolicyVersion
sourcefn clone(&self) -> PolicyVersion
fn clone(&self) -> PolicyVersion
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PolicyVersion
impl Debug for PolicyVersion
sourceimpl PartialEq<PolicyVersion> for PolicyVersion
impl PartialEq<PolicyVersion> for PolicyVersion
sourcefn eq(&self, other: &PolicyVersion) -> bool
fn eq(&self, other: &PolicyVersion) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PolicyVersion) -> bool
fn ne(&self, other: &PolicyVersion) -> bool
This method tests for !=
.
impl StructuralPartialEq for PolicyVersion
Auto Trait Implementations
impl RefUnwindSafe for PolicyVersion
impl Send for PolicyVersion
impl Sync for PolicyVersion
impl Unpin for PolicyVersion
impl UnwindSafe for PolicyVersion
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more