Class: Aws::SageMakerGeospatial::Types::ZonalStatisticsConfigInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMakerGeospatial::Types::ZonalStatisticsConfigInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemakergeospatial/types.rb
Overview
The structure representing input configuration of ZonalStatistics operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#statistics ⇒ Array<String>
List of zonal statistics to compute.
-
#target_bands ⇒ Array<String>
Bands used in the operation.
-
#zone_s3_path ⇒ String
The Amazon S3 path pointing to the GeoJSON containing the polygonal zones.
-
#zone_s3_path_kms_key_id ⇒ String
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.
Instance Attribute Details
#statistics ⇒ Array<String>
List of zonal statistics to compute.
2635 2636 2637 2638 2639 2640 2641 2642 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 2635 class ZonalStatisticsConfigInput < Struct.new( :statistics, :target_bands, :zone_s3_path, :zone_s3_path_kms_key_id) SENSITIVE = [] include Aws::Structure end |
#target_bands ⇒ Array<String>
Bands used in the operation. If no target bands are specified, it uses all bands available input.
2635 2636 2637 2638 2639 2640 2641 2642 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 2635 class ZonalStatisticsConfigInput < Struct.new( :statistics, :target_bands, :zone_s3_path, :zone_s3_path_kms_key_id) SENSITIVE = [] include Aws::Structure end |
#zone_s3_path ⇒ String
The Amazon S3 path pointing to the GeoJSON containing the polygonal zones.
2635 2636 2637 2638 2639 2640 2641 2642 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 2635 class ZonalStatisticsConfigInput < Struct.new( :statistics, :target_bands, :zone_s3_path, :zone_s3_path_kms_key_id) SENSITIVE = [] include Aws::Structure end |
#zone_s3_path_kms_key_id ⇒ String
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.
[1]: docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-id
2635 2636 2637 2638 2639 2640 2641 2642 |
# File 'lib/aws-sdk-sagemakergeospatial/types.rb', line 2635 class ZonalStatisticsConfigInput < Struct.new( :statistics, :target_bands, :zone_s3_path, :zone_s3_path_kms_key_id) SENSITIVE = [] include Aws::Structure end |