Module Values.GetLoggingConfigurationResponseSource

Gets the specified logging configuration.

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

    Logging-configuration ARN, from the request (if identifier was an ARN).

    *)
  2. id : LoggingConfigurationID.t option;
    (*

    Logging-configuration ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the logging configuration.

    *)
  3. createTime : Time.t option;
    (*

    Time when the logging configuration was created. This is an ISO 8601 timestamp; note that this is returned as a string.

    *)
  4. updateTime : Time.t option;
    (*

    Time of the logging configuration’s last update. This is an ISO 8601 timestamp; note that this is returned as a string.

    *)
  5. name : LoggingConfigurationName.t option;
    (*

    Logging-configuration name. This value does not need to be unique.

    *)
  6. destinationConfiguration : DestinationConfiguration.t option;
    (*

    A complex type that contains a destination configuration for where chat content will be logged. There is only one type of destination (cloudWatchLogs, firehose, or s3) in a destinationConfiguration.

    *)
  7. state : LoggingConfigurationState.t option;
    (*

    The state of the logging configuration. When the state is ACTIVE, the configuration is ready to log chat content.

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

    Tags attached to the resource. Array of maps, each of the form string:string (key:value).

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ValidationException of ValidationException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?id:??? -> ?createTime:??? -> ?updateTime:??? -> ?name:??? -> ?destinationConfiguration:??? -> ?state:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of LoggingConfigurationArn.t | `Structure of (string * [> `Structure of (string * [> `String of BucketName.t ]) list ]) list | `Timestamp of Time.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