Module Values.AwsEksClusterDetailsSource

Provides details about an Amazon EKS cluster.

Sourcetype nonrec t = {
  1. arn : NonEmptyString.t option;
    (*

    The ARN of the cluster.

    *)
  2. certificateAuthorityData : NonEmptyString.t option;
    (*

    The certificate authority data for the cluster.

    *)
  3. clusterStatus : NonEmptyString.t option;
    (*

    The status of the cluster. Valid values are as follows: ACTIVE CREATING DELETING FAILED PENDING UPDATING

    *)
  4. endpoint : NonEmptyString.t option;
    (*

    The endpoint for the Amazon EKS API server.

    *)
  5. name : NonEmptyString.t option;
    (*

    The name of the cluster.

    *)
  6. resourcesVpcConfig : AwsEksClusterResourcesVpcConfigDetails.t option;
    (*

    The VPC configuration used by the cluster control plane.

    *)
  7. roleArn : NonEmptyString.t option;
    (*

    The ARN of the IAM role that provides permissions for the Amazon EKS control plane to make calls to Amazon Web Services API operations on your behalf.

    *)
  8. version : NonEmptyString.t option;
    (*

    The Amazon EKS server version for the cluster.

    *)
  9. logging : AwsEksClusterLoggingDetails.t option;
    (*

    The logging configuration for the cluster.

    *)
}
Sourceval make : ?arn:??? -> ?certificateAuthorityData:??? -> ?clusterStatus:??? -> ?endpoint:??? -> ?name:??? -> ?resourcesVpcConfig:??? -> ?roleArn:??? -> ?version:??? -> ?logging:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of NonEmptyString.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of NonEmptyString.t ] list ]) list ] list ]) list ]) 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