pub struct Capability {
pub name: String,
pub arn: String,
pub cluster_name: String,
pub type_: String,
pub role_arn: String,
pub status: String,
pub version: String,
pub configuration: Option<Value>,
pub tags: TagMap,
pub created_at: DateTime<Utc>,
pub modified_at: DateTime<Utc>,
pub delete_propagation_policy: Option<String>,
}Expand description
An EKS cluster capability (e.g. an ACK / KRO / ArgoCD controller), a
sub-resource of a cluster keyed by capabilityName.
Fields§
§name: String§arn: String§cluster_name: String§type_: StringThe CapabilityType (ACK / KRO / ARGOCD).
role_arn: String§status: String§version: String§configuration: Option<Value>The CapabilityConfigurationResponse-shaped object, when supplied.
created_at: DateTime<Utc>§modified_at: DateTime<Utc>§delete_propagation_policy: Option<String>Trait Implementations§
Source§impl Clone for Capability
impl Clone for Capability
Source§fn clone(&self) -> Capability
fn clone(&self) -> Capability
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 Capability
impl Debug for Capability
Source§impl<'de> Deserialize<'de> for Capability
impl<'de> Deserialize<'de> for Capability
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 Capability
impl RefUnwindSafe for Capability
impl Send for Capability
impl Sync for Capability
impl Unpin for Capability
impl UnsafeUnpin for Capability
impl UnwindSafe for Capability
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