Module Values.ConnectorConfigResponseSource

The full description of your connected cluster.

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

    A unique ID associated with the cluster for registration purposes.

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

    A unique code associated with the cluster for registration purposes.

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

    The expiration time of the connected cluster. The cluster's YAML file must be applied through the native provider.

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

    The cluster's cloud service provider.

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

    The Amazon Resource Name (ARN) of the role to communicate with services from the connected Kubernetes cluster.

    *)
}
Sourceval make : ?activationId:??? -> ?activationCode:??? -> ?activationExpiry:??? -> ?provider:??? -> ?roleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `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