Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::SageMaker::Types::BatchDataCaptureConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb

Overview

Configuration to control how SageMaker captures inference data for batch transform jobs.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#destination_s3_uriString

The Amazon S3 location being used to capture the data.

Returns:

  • (String)

2945
2946
2947
2948
2949
2950
2951
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 2945

class BatchDataCaptureConfig < Struct.new(
  :destination_s3_uri,
  :kms_key_id,
  :generate_inference_id)
  SENSITIVE = []
  include Aws::Structure
end

#generate_inference_idBoolean

Flag that indicates whether to append inference id to the output.

Returns:

  • (Boolean)

2945
2946
2947
2948
2949
2950
2951
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 2945

class BatchDataCaptureConfig < Struct.new(
  :destination_s3_uri,
  :kms_key_id,
  :generate_inference_id)
  SENSITIVE = []
  include Aws::Structure
end

#kms_key_idString

The Amazon Resource Name (ARN) of a Amazon Web Services Key Management Service key that SageMaker uses to encrypt data on the storage volume attached to the ML compute instance that hosts the batch transform job.

The KmsKeyId can be any of the following formats:

  • Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab

  • Key ARN: arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab

  • Alias name: alias/ExampleAlias

  • Alias name ARN: arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias

Returns:

  • (String)

2945
2946
2947
2948
2949
2950
2951
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 2945

class BatchDataCaptureConfig < Struct.new(
  :destination_s3_uri,
  :kms_key_id,
  :generate_inference_id)
  SENSITIVE = []
  include Aws::Structure
end