Class: Aws::SageMaker::Types::MonitoringOutputConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::MonitoringOutputConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass MonitoringOutputConfig data as a hash:
{
monitoring_outputs: [ # required
{
s3_output: { # required
s3_uri: "MonitoringS3Uri", # required
local_path: "ProcessingLocalPath", # required
s3_upload_mode: "Continuous", # accepts Continuous, EndOfJob
},
},
],
kms_key_id: "KmsKeyId",
}
The output configuration for monitoring jobs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_id ⇒ String
The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
-
#monitoring_outputs ⇒ Array<Types::MonitoringOutput>
Monitoring outputs for monitoring jobs.
Instance Attribute Details
#kms_key_id ⇒ String
The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
29694 29695 29696 29697 29698 29699 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 29694 class MonitoringOutputConfig < Struct.new( :monitoring_outputs, :kms_key_id) SENSITIVE = [] include Aws::Structure end |
#monitoring_outputs ⇒ Array<Types::MonitoringOutput>
Monitoring outputs for monitoring jobs. This is where the output of the periodic monitoring jobs is uploaded.
29694 29695 29696 29697 29698 29699 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 29694 class MonitoringOutputConfig < Struct.new( :monitoring_outputs, :kms_key_id) SENSITIVE = [] include Aws::Structure end |