Show / Hide Table of Contents

Class CfnTransformJob.DataSourceProperty

Describes the location of the channel data.

Inheritance
object
CfnTransformJob.DataSourceProperty
Implements
CfnTransformJob.IDataSourceProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTransformJob.DataSourceProperty : CfnTransformJob.IDataSourceProperty
Syntax (vb)
Public Class CfnTransformJob.DataSourceProperty Implements CfnTransformJob.IDataSourceProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-transformjob-datasource.html

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.AWS.Sagemaker;

             var dataSourceProperty = new DataSourceProperty {
                 S3DataSource = new S3DataSourceProperty {
                     S3DataType = "s3DataType",
                     S3Uri = "s3Uri"
                 }
             };

Synopsis

Constructors

DataSourceProperty()

Describes the location of the channel data.

Properties

S3DataSource

The S3 location of the data source.

Constructors

DataSourceProperty()

Describes the location of the channel data.

public DataSourceProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-transformjob-datasource.html

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.AWS.Sagemaker;

             var dataSourceProperty = new DataSourceProperty {
                 S3DataSource = new S3DataSourceProperty {
                     S3DataType = "s3DataType",
                     S3Uri = "s3Uri"
                 }
             };

Properties

S3DataSource

The S3 location of the data source.

public object S3DataSource { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-transformjob-datasource.html#cfn-sagemaker-transformjob-datasource-s3datasource

Type union: either IResolvable or CfnTransformJob.IS3DataSourceProperty

Implements

CfnTransformJob.IDataSourceProperty
Back to top Generated by DocFX