Module Values.CapabilitySource

An object representing a managed capability in an Amazon EKS cluster. This includes all configuration, status, and health information for the capability.

Sourcetype nonrec t = {
  1. capabilityName : String_.t option;
    (*

    The unique name of the capability within the cluster.

    *)
  2. arn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the capability.

    *)
  3. clusterName : String_.t option;
    (*

    The name of the Amazon EKS cluster that contains this capability.

    *)
  4. type_ : CapabilityType.t option;
    (*

    The type of capability. Valid values are ACK, ARGOCD, or KRO.

    *)
  5. roleArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role that the capability uses to interact with Amazon Web Services services.

    *)
  6. status : CapabilityStatus.t option;
    (*

    The current status of the capability. Valid values include: CREATING – The capability is being created. ACTIVE – The capability is running and available. UPDATING – The capability is being updated. DELETING – The capability is being deleted. CREATE_FAILED – The capability creation failed. UPDATE_FAILED – The capability update failed. DELETE_FAILED – The capability deletion failed.

    *)
  7. version : String_.t option;
    (*

    The version of the capability software that is currently running.

    *)
  8. configuration : CapabilityConfigurationResponse.t option;
    (*

    The configuration settings for the capability. The structure varies depending on the capability type.

    *)
  9. tags : TagMap.t option;
  10. health : CapabilityHealth.t option;
    (*

    Health information for the capability, including any issues that may be affecting its operation.

    *)
  11. createdAt : Timestamp.t option;
    (*

    The Unix epoch timestamp in seconds for when the capability was created.

    *)
  12. modifiedAt : Timestamp.t option;
    (*

    The Unix epoch timestamp in seconds for when the capability was last modified.

    *)
  13. deletePropagationPolicy : CapabilityDeletePropagationPolicy.t option;
    (*

    The delete propagation policy for the capability. Currently, the only supported value is RETAIN, which keeps all resources managed by the capability when the capability is deleted.

    *)
}
Sourceval make : ?capabilityName:??? -> ?arn:??? -> ?clusterName:??? -> ?type_:??? -> ?roleArn:??? -> ?status:??? -> ?version:??? -> ?configuration:??? -> ?tags:??? -> ?health:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?deletePropagationPolicy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of String_.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list ]) list ] list | `String of String_.t | `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.t ]) list ]) list ]) list | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t