Module Values.EndpointSource

This entity represents the endpoint that is managed by Amazon EMR on EKS.

Sourcetype nonrec t = {
  1. id : ResourceIdString.t option;
    (*

    The ID of the endpoint.

    *)
  2. name : ResourceNameString.t option;
    (*

    The name of the endpoint.

    *)
  3. arn : EndpointArn.t option;
    (*

    The ARN of the endpoint.

    *)
  4. virtualClusterId : ResourceIdString.t option;
    (*

    The ID of the endpoint's virtual cluster.

    *)
  5. type_ : EndpointType.t option;
    (*

    The type of the endpoint.

    *)
  6. state : EndpointState.t option;
    (*

    The state of the endpoint.

    *)
  7. releaseLabel : ReleaseLabel.t option;
    (*

    The EMR release version to be used for the endpoint.

    *)
  8. executionRoleArn : IAMRoleArn.t option;
    (*

    The execution role ARN of the endpoint.

    *)
  9. certificateArn : ACMCertArn.t option;
    (*

    The certificate ARN of the endpoint. This field is under deprecation and will be removed in future.

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

    The certificate generated by emr control plane on customer behalf to secure the managed endpoint.

    *)
  11. configurationOverrides : ConfigurationOverrides.t option;
    (*

    The configuration settings that are used to override existing configurations for endpoints.

    *)
  12. serverUrl : UriString.t option;
    (*

    The server URL of the endpoint.

    *)
  13. createdAt : Date.t option;
    (*

    The date and time when the endpoint was created.

    *)
  14. securityGroup : String256.t option;
    (*

    The security group configuration of the endpoint.

    *)
  15. subnetIds : SubnetIds.t option;
    (*

    The subnet IDs of the endpoint.

    *)
  16. stateDetails : String256.t option;
    (*

    Additional details of the endpoint state.

    *)
  17. failureReason : FailureReason.t option;
    (*

    The reasons why the endpoint has failed.

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

    The tags of the endpoint.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?virtualClusterId:??? -> ?type_:??? -> ?state:??? -> ?releaseLabel:??? -> ?executionRoleArn:??? -> ?certificateArn:??? -> ?certificateAuthority:??? -> ?configurationOverrides:??? -> ?serverUrl:??? -> ?createdAt:??? -> ?securityGroup:??? -> ?subnetIds:??? -> ?stateDetails:??? -> ?failureReason:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String256.t ] list | `Map of ([> `String of String128.t ] * [> `String of StringEmpty256.t ]) list | `String of ResourceIdString.t | `Structure of (string * Awso.Botodata.value) list | `Timestamp of Date.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