Module Values.CreateDiscovererResponseSource

Creates a discoverer.

Sourcetype nonrec t = {
  1. description : string option;
    (*

    The description of the discoverer.

    *)
  2. discovererArn : string option;
    (*

    The ARN of the discoverer.

    *)
  3. discovererId : string option;
    (*

    The ID of the discoverer.

    *)
  4. sourceArn : string option;
    (*

    The ARN of the event bus.

    *)
  5. state : DiscovererState.t option;
    (*

    The state of the discoverer.

    *)
  6. crossAccount : bool option;
    (*

    The Status if the discoverer will discover schemas from events sent from another account.

    *)
  7. tags : Tags.t option;
    (*

    Tags associated with the resource.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ConflictException of ConflictException.t
  3. | `ForbiddenException of ForbiddenException.t
  4. | `InternalServerErrorException of InternalServerErrorException.t
  5. | `ServiceUnavailableException of ServiceUnavailableException.t
  6. | `UnauthorizedException of UnauthorizedException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?description:??? -> ?discovererArn:??? -> ?discovererId:??? -> ?sourceArn:??? -> ?state:??? -> ?crossAccount:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `Enum of string | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string ]) 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