Interface CfnMonitoringSchedulePropsMixin.S3OutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMonitoringSchedulePropsMixin.S3OutputProperty.Jsii$Proxy
- Enclosing class:
CfnMonitoringSchedulePropsMixin
@Stability(Stable)
public static interface CfnMonitoringSchedulePropsMixin.S3OutputProperty
extends software.amazon.jsii.JsiiSerializable
Information about where and how you want to store the results of a monitoring job.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
S3OutputProperty s3OutputProperty = S3OutputProperty.builder()
.localPath("localPath")
.s3UploadMode("s3UploadMode")
.s3Uri("s3Uri")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMonitoringSchedulePropsMixin.S3OutputPropertystatic final classAn implementation forCfnMonitoringSchedulePropsMixin.S3OutputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe local path to the S3 storage location where SageMaker saves the results of a monitoring job.default StringWhether to upload the results of the monitoring job continuously or after the job completes.default StringgetS3Uri()A URI that identifies the S3 storage location where 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 S3 storage location where SageMaker saves the results of a monitoring job.LocalPath is an absolute path for the output data.
- See Also:
-
getS3UploadMode
Whether to upload the results of the monitoring job continuously or after the job completes.- See Also:
-
getS3Uri
A URI that identifies the S3 storage location where SageMaker saves the results of a monitoring job.- See Also:
-
builder
-