Module Values.ClusterSource

An object representing an Amazon EKS cluster.

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

    The name of your cluster.

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

    The Amazon Resource Name (ARN) of the cluster.

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

    The Unix epoch timestamp at object creation.

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

    The Kubernetes server version for the cluster.

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

    The endpoint for your Kubernetes API server.

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

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

    *)
  7. resourcesVpcConfig : VpcConfigResponse.t option;
    (*

    The VPC configuration used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see Cluster VPC considerations and Cluster security group considerations in the Amazon EKS User Guide.

    *)
  8. kubernetesNetworkConfig : KubernetesNetworkConfigResponse.t option;
    (*

    The Kubernetes network configuration for the cluster.

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

    The logging configuration for your cluster.

    *)
  10. identity : Identity.t option;
    (*

    The identity provider information for the cluster.

    *)
  11. status : ClusterStatus.t option;
    (*

    The current status of the cluster.

    *)
  12. certificateAuthority : Certificate.t option;
    (*

    The certificate-authority-data for your cluster.

    *)
  13. clientRequestToken : String_.t option;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    *)
  14. platformVersion : String_.t option;
    (*

    The platform version of your Amazon EKS cluster. For more information about clusters deployed on the Amazon Web Services Cloud, see Platform versions in the Amazon EKS User Guide . For more information about local clusters deployed on an Outpost, see Amazon EKS local cluster platform versions in the Amazon EKS User Guide .

    *)
  15. tags : TagMap.t option;
    (*

    Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.

    *)
  16. encryptionConfig : EncryptionConfigList.t option;
    (*

    The encryption configuration for the cluster.

    *)
  17. connectorConfig : ConnectorConfigResponse.t option;
    (*

    The configuration used to connect to a cluster for registration.

    *)
  18. id : String_.t option;
    (*

    The ID of your local Amazon EKS cluster on an Amazon Web Services Outpost. This property isn't available for an Amazon EKS cluster on the Amazon Web Services cloud.

    *)
  19. health : ClusterHealth.t option;
    (*

    An object representing the health of your Amazon EKS cluster.

    *)
  20. outpostConfig : OutpostConfigResponse.t option;
    (*

    An object representing the configuration of your local Amazon EKS cluster on an Amazon Web Services Outpost. This object isn't available for clusters on the Amazon Web Services cloud.

    *)
  21. accessConfig : AccessConfigResponse.t option;
    (*

    The access configuration for the cluster.

    *)
  22. upgradePolicy : UpgradePolicyResponse.t option;
    (*

    This value indicates if extended support is enabled or disabled for the cluster. Learn more about EKS Extended Support in the Amazon EKS User Guide.

    *)
  23. zonalShiftConfig : ZonalShiftConfigResponse.t option;
    (*

    The configuration for zonal shift for the cluster.

    *)
  24. remoteNetworkConfig : RemoteNetworkConfigResponse.t option;
    (*

    The configuration in the cluster for EKS Hybrid Nodes. You can add, change, or remove this configuration after the cluster is created.

    *)
  25. computeConfig : ComputeConfigResponse.t option;
    (*

    Indicates the current configuration of the compute capability on your EKS Auto Mode cluster. For example, if the capability is enabled or disabled. If the compute capability is enabled, EKS Auto Mode will create and delete EC2 Managed Instances in your Amazon Web Services account. For more information, see EKS Auto Mode compute capability in the Amazon EKS User Guide.

    *)
  26. storageConfig : StorageConfigResponse.t option;
    (*

    Indicates the current configuration of the block storage capability on your EKS Auto Mode cluster. For example, if the capability is enabled or disabled. If the block storage capability is enabled, EKS Auto Mode will create and delete EBS volumes in your Amazon Web Services account. For more information, see EKS Auto Mode block storage capability in the Amazon EKS User Guide.

    *)
  27. deletionProtection : BoxedBoolean.t option;
    (*

    The current deletion protection setting for the cluster. When true, deletion protection is enabled and the cluster cannot be deleted until protection is disabled. When false, the cluster can be deleted normally. This setting only applies to clusters in an active state.

    *)
  28. controlPlaneScalingConfig : ControlPlaneScalingConfig.t option;
    (*

    The control plane scaling tier configuration. For more information, see EKS Provisioned Control Plane in the Amazon EKS User Guide.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?createdAt:??? -> ?version:??? -> ?endpoint:??? -> ?roleArn:??? -> ?resourcesVpcConfig:??? -> ?kubernetesNetworkConfig:??? -> ?logging:??? -> ?identity:??? -> ?status:??? -> ?certificateAuthority:??? -> ?clientRequestToken:??? -> ?platformVersion:??? -> ?tags:??? -> ?encryptionConfig:??? -> ?connectorConfig:??? -> ?id:??? -> ?health:??? -> ?outpostConfig:??? -> ?accessConfig:??? -> ?upgradePolicy:??? -> ?zonalShiftConfig:??? -> ?remoteNetworkConfig:??? -> ?computeConfig:??? -> ?storageConfig:??? -> ?deletionProtection:??? -> ?controlPlaneScalingConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BoxedBoolean.t | `Enum of string | `List of [> `Structure of (string * [> `List of [> `String of String_.t ] list | `Structure of (string * [> `String of String_.t ]) list ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of String_.t | `Structure of (string * [> `Boolean of BoxedBoolean.t | `Enum of string | `List of [> `Enum of string | `String of String_.t ] list | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Boolean of BoxedBoolean.t | `String of String_.t ]) list | `Timestamp of Timestamp.t ]) 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