Module Values.ZonalStatisticsConfigInputSource

The structure representing input configuration of ZonalStatistics operation.

Sourcetype nonrec t = {
  1. statistics : ZonalStatisticsListInput.t;
    (*

    List of zonal statistics to compute.

    *)
  2. targetBands : StringListInput.t option;
    (*

    Bands used in the operation. If no target bands are specified, it uses all bands available input.

    *)
  3. zoneS3Path : S3Uri.t;
    (*

    The Amazon S3 path pointing to the GeoJSON containing the polygonal zones.

    *)
  4. zoneS3PathKmsKeyId : KmsKey.t option;
    (*

    The Amazon Resource Name (ARN) or an ID of a Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to decrypt your output artifacts with Amazon S3 server-side encryption. The SageMaker execution role must have kms:GenerateDataKey permission. The KmsKeyId can be any of the following formats: // KMS Key ID "1234abcd-12ab-34cd-56ef-1234567890ab" // Amazon Resource Name (ARN) of a KMS Key "arn:aws:kms:<region>:<account>:key/<key-id-12ab-34cd-56ef-1234567890ab>" For more information about key identifiers, see Key identifiers (KeyID) in the Amazon Web Services Key Management Service (Amazon Web Services KMS) documentation.

    *)
}
Sourceval context_ : string
Sourceval make : ?targetBands:??? -> ?zoneS3PathKmsKeyId:??? -> statistics:ZonalStatisticsListInput.t -> zoneS3Path:S3Uri.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string | `String of String_.t ] list | `String of S3Uri.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