Struct aws_sdk_eks::types::AssociatedAccessPolicy
source · #[non_exhaustive]pub struct AssociatedAccessPolicy {
pub policy_arn: Option<String>,
pub access_scope: Option<AccessScope>,
pub associated_at: Option<DateTime>,
pub modified_at: Option<DateTime>,
}
Expand description
An access policy association.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.policy_arn: Option<String>
The ARN of the AccessPolicy
.
access_scope: Option<AccessScope>
The scope of the access policy.
associated_at: Option<DateTime>
The date and time the AccessPolicy
was associated with an AccessEntry
.
modified_at: Option<DateTime>
The Unix epoch timestamp for the last modification to the object.
Implementations§
source§impl AssociatedAccessPolicy
impl AssociatedAccessPolicy
sourcepub fn policy_arn(&self) -> Option<&str>
pub fn policy_arn(&self) -> Option<&str>
The ARN of the AccessPolicy
.
sourcepub fn access_scope(&self) -> Option<&AccessScope>
pub fn access_scope(&self) -> Option<&AccessScope>
The scope of the access policy.
sourcepub fn associated_at(&self) -> Option<&DateTime>
pub fn associated_at(&self) -> Option<&DateTime>
The date and time the AccessPolicy
was associated with an AccessEntry
.
sourcepub fn modified_at(&self) -> Option<&DateTime>
pub fn modified_at(&self) -> Option<&DateTime>
The Unix epoch timestamp for the last modification to the object.
source§impl AssociatedAccessPolicy
impl AssociatedAccessPolicy
sourcepub fn builder() -> AssociatedAccessPolicyBuilder
pub fn builder() -> AssociatedAccessPolicyBuilder
Creates a new builder-style object to manufacture AssociatedAccessPolicy
.
Trait Implementations§
source§impl Clone for AssociatedAccessPolicy
impl Clone for AssociatedAccessPolicy
source§fn clone(&self) -> AssociatedAccessPolicy
fn clone(&self) -> AssociatedAccessPolicy
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 AssociatedAccessPolicy
impl Debug for AssociatedAccessPolicy
source§impl PartialEq for AssociatedAccessPolicy
impl PartialEq for AssociatedAccessPolicy
source§fn eq(&self, other: &AssociatedAccessPolicy) -> bool
fn eq(&self, other: &AssociatedAccessPolicy) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AssociatedAccessPolicy
Auto Trait Implementations§
impl RefUnwindSafe for AssociatedAccessPolicy
impl Send for AssociatedAccessPolicy
impl Sync for AssociatedAccessPolicy
impl Unpin for AssociatedAccessPolicy
impl UnwindSafe for AssociatedAccessPolicy
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.