Module Values.RasterDataCollectionMetadataSource

Response object containing details for a specific RasterDataCollection.

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

    The Amazon Resource Name (ARN) of the raster data collection.

    *)
  2. description : String_.t option;
    (*

    A description of the raster data collection.

    *)
  3. descriptionPageUrl : String_.t option;
    (*

    The description URL of the raster data collection.

    *)
  4. name : String_.t option;
    (*

    The name of the raster data collection.

    *)
  5. supportedFilters : FilterList.t option;
    (*

    The list of filters supported by the raster data collection.

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

    Each tag consists of a key and a value.

    *)
  7. type_ : DataCollectionType.t option;
    (*

    The type of raster data collection.

    *)
}
Sourceval make : ?arn:??? -> ?description:??? -> ?descriptionPageUrl:??? -> ?name:??? -> ?supportedFilters:??? -> ?tags:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Float of Float_.t | `String of String_.t ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of DataCollectionArn.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