Module Values.StoredQuerySource

Provides the details of a stored query.

Sourcetype nonrec t = {
  1. queryId : QueryId.t option;
    (*

    The ID of the query.

    *)
  2. queryArn : QueryArn.t option;
    (*

    Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type/resource-name/resource-id.

    *)
  3. queryName : QueryName.t;
    (*

    The name of the query.

    *)
  4. description : QueryDescription.t option;
    (*

    A unique description for the query.

    *)
  5. expression : QueryExpression.t option;
    (*

    The expression of the query. For example, SELECT resourceId, resourceType, supplementaryConfiguration.BucketVersioningConfiguration.status WHERE resourceType = 'AWS::S3::Bucket' AND supplementaryConfiguration.BucketVersioningConfiguration.status = 'Off'.

    *)
}
Sourceval context_ : string
Sourceval make : ?queryId:??? -> ?queryArn:??? -> ?description:??? -> ?expression:??? -> queryName:QueryName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of QueryId.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