Module Values.DescribeConfigurationResponseSource

Returns information about the specified configuration.

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

    Required. The ARN of the configuration.

    *)
  2. authenticationStrategy : AuthenticationStrategy.t option;
    (*

    Optional. The authentication strategy associated with the configuration. The default is SIMPLE.

    *)
  3. created : string option;
    (*

    Required. The date and time of the configuration revision.

    *)
  4. description : string option;
    (*

    Required. The description of the configuration.

    *)
  5. engineType : EngineType.t option;
    (*

    Required. The type of broker engine. Currently, Amazon MQ supports ACTIVEMQ and RABBITMQ.

    *)
  6. engineVersion : string option;
    (*

    The broker engine version. Defaults to the latest available version for the specified broker engine type. For a list of supported engine versions, see the ActiveMQ version management and the RabbitMQ version management sections in the Amazon MQ Developer Guide.

    *)
  7. id : string option;
    (*

    Required. The unique ID that Amazon MQ generates for the configuration.

    *)
  8. latestRevision : ConfigurationRevision.t option;
    (*

    Required. The latest revision of the configuration.

    *)
  9. name : string option;
    (*

    Required. The name of the configuration. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.

    *)
  10. tags : (string * string) list option;
    (*

    The list of all tags associated with this configuration.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `ForbiddenException of ForbiddenException.t
  3. | `InternalServerErrorException of InternalServerErrorException.t
  4. | `NotFoundException of NotFoundException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?authenticationStrategy:??? -> ?created:??? -> ?description:??? -> ?engineType:??? -> ?engineVersion:??? -> ?id:??? -> ?latestRevision:??? -> ?name:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Structure of (string * [> `Integer of int | `String of string | `Timestamp of string ]) list | `Timestamp 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