@Stability(value=Stable)
public static interface CfnMonitoringSchedule.S3OutputProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMonitoringSchedule.S3OutputProperty.Builder
A builder for
CfnMonitoringSchedule.S3OutputProperty |
static class |
CfnMonitoringSchedule.S3OutputProperty.Jsii$Proxy
An implementation for
CfnMonitoringSchedule.S3OutputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnMonitoringSchedule.S3OutputProperty.Builder |
builder() |
String |
getLocalPath()
The local path to the S3 storage location where SageMaker saves the results of a monitoring job.
|
default String |
getS3UploadMode()
Whether to upload the results of the monitoring job continuously or after the job completes.
|
String |
getS3Uri()
A URI that identifies the S3 storage location where SageMaker saves the results of a monitoring job.
|
@Stability(value=Stable) @NotNull String getLocalPath()
LocalPath is an absolute path for the output data.
@Stability(value=Stable) @NotNull String getS3Uri()
@Stability(value=Stable) @Nullable default String getS3UploadMode()
@Stability(value=Stable) static CfnMonitoringSchedule.S3OutputProperty.Builder builder()
Copyright © 2022. All rights reserved.