Interface CfnModelQualityJobDefinition.S3OutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelQualityJobDefinition.S3OutputProperty.Jsii$Proxy
- Enclosing class:
CfnModelQualityJobDefinition
@Stability(Stable)
public static interface CfnModelQualityJobDefinition.S3OutputProperty
extends software.amazon.jsii.JsiiSerializable
The Amazon S3 storage location where the results of a monitoring job are saved.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.sagemaker.*; S3OutputProperty s3OutputProperty = S3OutputProperty.builder() .localPath("localPath") .s3Uri("s3Uri") // the properties below are optional .s3UploadMode("s3UploadMode") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnModelQualityJobDefinition.S3OutputProperty
static final class
An implementation forCfnModelQualityJobDefinition.S3OutputProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.default String
Whether to upload the results of the monitoring job continuously or after the job completes.getS3Uri()
A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLocalPath
The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.LocalPath is an absolute path for the output data.
- See Also:
-
getS3Uri
A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.- See Also:
-
getS3UploadMode
Whether to upload the results of the monitoring job continuously or after the job completes.- See Also:
-
builder
-