Module Values.RegisteredServiceSource

Represents a registered service with its configuration and accessible resources.

Sourcetype nonrec t = {
  1. serviceId : ServiceId.t option;
    (*

    The unique identifier of a service.

    *)
  2. serviceType : Service.t option;
    (*

    The service type e.g github or dynatrace

    *)
  3. name : ServiceName.t option;
    (*

    The display name of the registered service.

    *)
  4. accessibleResources : DocumentList.t option;
    (*

    List of accessible resources for this service.

    *)
  5. additionalServiceDetails : AdditionalServiceDetails.t option;
    (*

    Additional details specific to the service type.

    *)
  6. kmsKeyArn : KmsKeyArn.t option;
    (*

    The ARN of the AWS Key Management Service (AWS KMS) customer managed key that's used to encrypt resources.

    *)
  7. privateConnectionName : PrivateConnectionName.t option;
    (*

    The name of the private connection used for VPC connectivity.

    *)
}
Sourceval make : ?serviceId:??? -> ?serviceType:??? -> ?name:??? -> ?accessibleResources:??? -> ?additionalServiceDetails:??? -> ?kmsKeyArn:??? -> ?privateConnectionName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of 'a list ] list | `String of ServiceId.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t ]) 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