Values.StoredQuerySourceProvides the details of a stored query.
type nonrec t = {queryId : QueryId.t option;The ID of the query.
*)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.
*)queryName : QueryName.t;The name of the query.
*)description : QueryDescription.t option;A unique description for the query.
*)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'.
*)}val make :
?queryId:??? ->
?queryArn:??? ->
?description:??? ->
?expression:??? ->
queryName:QueryName.t ->
unit ->
t