Module Values.AwsSqsQueueDetailsSource

Data about a queue.

Sourcetype nonrec t = {
  1. kmsDataKeyReusePeriodSeconds : Integer.t option;
    (*

    The length of time, in seconds, for which Amazon SQS can reuse a data key to encrypt or decrypt messages before calling KMS again.

    *)
  2. kmsMasterKeyId : NonEmptyString.t option;
    (*

    The ID of an Amazon Web Services managed key for Amazon SQS or a custom KMS key.

    *)
  3. queueName : NonEmptyString.t option;
    (*

    The name of the new queue.

    *)
  4. deadLetterTargetArn : NonEmptyString.t option;
    (*

    The ARN of the dead-letter queue to which Amazon SQS moves messages after the value of maxReceiveCount is exceeded.

    *)
}
Sourceval make : ?kmsDataKeyReusePeriodSeconds:??? -> ?kmsMasterKeyId:??? -> ?queueName:??? -> ?deadLetterTargetArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.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