Module Values.ReferenceStoreDetailSource

Details about a reference store.

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

    The store's ARN.

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

    The store's ID.

    *)
  3. name : ReferenceStoreName.t option;
    (*

    The store's name.

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

    The store's description.

    *)
  5. sseConfig : SseConfig.t option;
    (*

    The store's server-side encryption (SSE) settings.

    *)
  6. creationTime : SyntheticTimestamp_date_time.t option;
    (*

    When the store was created.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?name:??? -> ?description:??? -> ?sseConfig:??? -> ?creationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ReferenceStoreArn.t | `Structure of (string * [> `Enum of string | `String of SseConfigKeyArnString.t ]) list | `Timestamp of SyntheticTimestamp_date_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