Struct aws_sdk_ssm::types::ParameterInlinePolicy
source · #[non_exhaustive]pub struct ParameterInlinePolicy { /* private fields */ }
Expand description
One or more policies assigned to a parameter.
Implementations§
source§impl ParameterInlinePolicy
impl ParameterInlinePolicy
sourcepub fn policy_text(&self) -> Option<&str>
pub fn policy_text(&self) -> Option<&str>
The JSON text of the policy.
sourcepub fn policy_type(&self) -> Option<&str>
pub fn policy_type(&self) -> Option<&str>
The type of policy. Parameter Store, a capability of Amazon Web Services Systems Manager, supports the following policy types: Expiration, ExpirationNotification, and NoChangeNotification.
sourcepub fn policy_status(&self) -> Option<&str>
pub fn policy_status(&self) -> Option<&str>
The status of the policy. Policies report the following statuses: Pending (the policy hasn't been enforced or applied yet), Finished (the policy was applied), Failed (the policy wasn't applied), or InProgress (the policy is being applied now).
source§impl ParameterInlinePolicy
impl ParameterInlinePolicy
sourcepub fn builder() -> ParameterInlinePolicyBuilder
pub fn builder() -> ParameterInlinePolicyBuilder
Creates a new builder-style object to manufacture ParameterInlinePolicy
.
Trait Implementations§
source§impl Clone for ParameterInlinePolicy
impl Clone for ParameterInlinePolicy
source§fn clone(&self) -> ParameterInlinePolicy
fn clone(&self) -> ParameterInlinePolicy
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 ParameterInlinePolicy
impl Debug for ParameterInlinePolicy
source§impl PartialEq<ParameterInlinePolicy> for ParameterInlinePolicy
impl PartialEq<ParameterInlinePolicy> for ParameterInlinePolicy
source§fn eq(&self, other: &ParameterInlinePolicy) -> bool
fn eq(&self, other: &ParameterInlinePolicy) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ParameterInlinePolicy
Auto Trait Implementations§
impl RefUnwindSafe for ParameterInlinePolicy
impl Send for ParameterInlinePolicy
impl Sync for ParameterInlinePolicy
impl Unpin for ParameterInlinePolicy
impl UnwindSafe for ParameterInlinePolicy
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
Mutably borrows from an owned value. Read more