Class CfnModelBiasJobDefinitionPropsMixin.S3OutputProperty
The Amazon S3 storage location where the results of a monitoring job are saved.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnModelBiasJobDefinitionPropsMixin.S3OutputProperty : CfnModelBiasJobDefinitionPropsMixin.IS3OutputProperty
Syntax (vb)
Public Class CfnModelBiasJobDefinitionPropsMixin.S3OutputProperty Implements CfnModelBiasJobDefinitionPropsMixin.IS3OutputProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var s3OutputProperty = new S3OutputProperty {
LocalPath = "localPath",
S3UploadMode = "s3UploadMode",
S3Uri = "s3Uri"
};
Synopsis
Constructors
| S3OutputProperty() | The Amazon S3 storage location where the results of a monitoring job are saved. |
Properties
| LocalPath | The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job. |
| S3UploadMode | Whether to upload the results of the monitoring job continuously or after the job completes. |
| S3Uri | A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job. |
Constructors
S3OutputProperty()
The Amazon S3 storage location where the results of a monitoring job are saved.
public S3OutputProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var s3OutputProperty = new S3OutputProperty {
LocalPath = "localPath",
S3UploadMode = "s3UploadMode",
S3Uri = "s3Uri"
};
Properties
LocalPath
The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
public string? LocalPath { get; set; }
Property Value
Remarks
LocalPath is an absolute path for the output data.
S3UploadMode
Whether to upload the results of the monitoring job continuously or after the job completes.
public string? S3UploadMode { get; set; }
Property Value
Remarks
S3Uri
A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
public string? S3Uri { get; set; }