public static interface CfnModelBiasJobDefinition.S3OutputProperty
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 |
CfnModelBiasJobDefinition.S3OutputProperty.Builder
A builder for
CfnModelBiasJobDefinition.S3OutputProperty |
static class |
CfnModelBiasJobDefinition.S3OutputProperty.Jsii$Proxy
An implementation for
CfnModelBiasJobDefinition.S3OutputProperty |
Modifier and Type | Method and Description |
---|---|
static CfnModelBiasJobDefinition.S3OutputProperty.Builder |
builder() |
java.lang.String |
getLocalPath()
The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
|
default java.lang.String |
getS3UploadMode()
Whether to upload the results of the monitoring job continuously or after the job completes.
|
java.lang.String |
getS3Uri()
A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
|
java.lang.String getLocalPath()
LocalPath
is an absolute path for the output data.
java.lang.String getS3Uri()
default java.lang.String getS3UploadMode()
static CfnModelBiasJobDefinition.S3OutputProperty.Builder builder()