Interface CfnModelExplainabilityJobDefinition.S3OutputProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelExplainabilityJobDefinition.S3OutputProperty.Jsii$Proxy
Enclosing class:
CfnModelExplainabilityJobDefinition

@Stability(Stable) public static interface CfnModelExplainabilityJobDefinition.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: