Class: Aws::S3Control::Types::S3ComputeObjectChecksumOperation
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::S3ComputeObjectChecksumOperation
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3control/types.rb
Overview
Directs the specified job to invoke the ComputeObjectChecksum operation on every object listed in the job’s manifest.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#checksum_algorithm ⇒ String
Indicates the algorithm that you want Amazon S3 to use to create the checksum.
-
#checksum_type ⇒ String
Indicates the checksum type that you want Amazon S3 to use to calculate the object’s checksum value.
Instance Attribute Details
#checksum_algorithm ⇒ String
Indicates the algorithm that you want Amazon S3 to use to create the checksum. For more information, see [Checking object integrity] in the Amazon S3 User Guide.
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
7323 7324 7325 7326 7327 7328 |
# File 'lib/aws-sdk-s3control/types.rb', line 7323 class S3ComputeObjectChecksumOperation < Struct.new( :checksum_algorithm, :checksum_type) SENSITIVE = [] include Aws::Structure end |
#checksum_type ⇒ String
Indicates the checksum type that you want Amazon S3 to use to calculate the object’s checksum value. For more information, see
- Checking object integrity][1
-
in the Amazon S3 User Guide.
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
7323 7324 7325 7326 7327 7328 |
# File 'lib/aws-sdk-s3control/types.rb', line 7323 class S3ComputeObjectChecksumOperation < Struct.new( :checksum_algorithm, :checksum_type) SENSITIVE = [] include Aws::Structure end |