Module Values.CreateConfigurationOutputSource

Returns information about the created configuration.

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

    Required. The Amazon Resource Name (ARN) of the configuration.

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

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

    *)
  3. created : string;
    (*

    Required. The date and time of the configuration.

    *)
  4. id : string;
    (*

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

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

    The latest revision of the configuration.

    *)
  6. name : string;
    (*

    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.

    *)
}
Sourceval context_ : string
Sourceval make : ?latestRevision:??? -> arn:string -> authenticationStrategy:AuthenticationStrategy.t -> created:string -> id:string -> name:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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