pub struct PodIdentityAssociation {
pub cluster_name: String,
pub namespace: String,
pub service_account: String,
pub role_arn: String,
pub association_arn: String,
pub association_id: String,
pub created_at: DateTime<Utc>,
pub modified_at: DateTime<Utc>,
pub disable_session_tags: bool,
pub target_role_arn: Option<String>,
pub external_id: Option<String>,
pub tags: TagMap,
}Expand description
An EKS Pod Identity association, a sub-resource of a cluster keyed by its
generated associationId. Binds a Kubernetes service account (in a
namespace) to an IAM role.
Fields§
§cluster_name: String§namespace: String§service_account: String§role_arn: String§association_arn: String§association_id: String§created_at: DateTime<Utc>§modified_at: DateTime<Utc>§target_role_arn: Option<String>Present only when the caller supplied targetRoleArn (cross-account).
external_id: Option<String>Generated for the target role’s trust policy when targetRoleArn is set.
Trait Implementations§
Source§impl Clone for PodIdentityAssociation
impl Clone for PodIdentityAssociation
Source§fn clone(&self) -> PodIdentityAssociation
fn clone(&self) -> PodIdentityAssociation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PodIdentityAssociation
impl Debug for PodIdentityAssociation
Source§impl<'de> Deserialize<'de> for PodIdentityAssociation
impl<'de> Deserialize<'de> for PodIdentityAssociation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PodIdentityAssociation
impl RefUnwindSafe for PodIdentityAssociation
impl Send for PodIdentityAssociation
impl Sync for PodIdentityAssociation
impl Unpin for PodIdentityAssociation
impl UnsafeUnpin for PodIdentityAssociation
impl UnwindSafe for PodIdentityAssociation
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