Show / Hide Table of Contents

Class CfnTransformJob.S3DataSourceProperty

The S3 location of the data source.

Inheritance
object
CfnTransformJob.S3DataSourceProperty
Implements
CfnTransformJob.IS3DataSourceProperty
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.S3DataSourceProperty : CfnTransformJob.IS3DataSourceProperty
Syntax (vb)
Public Class CfnTransformJob.S3DataSourceProperty Implements CfnTransformJob.IS3DataSourceProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-transformjob-s3datasource.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 s3DataSourceProperty = new S3DataSourceProperty {
                 S3DataType = "s3DataType",
                 S3Uri = "s3Uri"
             };

Synopsis

Constructors

S3DataSourceProperty()

The S3 location of the data source.

Properties

S3DataType

The data type.

S3Uri

The S3 URI.

Constructors

S3DataSourceProperty()

The S3 location of the data source.

public S3DataSourceProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-transformjob-s3datasource.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 s3DataSourceProperty = new S3DataSourceProperty {
                 S3DataType = "s3DataType",
                 S3Uri = "s3Uri"
             };

Properties

S3DataType

The data type.

public string S3DataType { get; set; }
Property Value

string

Remarks

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

S3Uri

The S3 URI.

public string S3Uri { get; set; }
Property Value

string

Remarks

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

Implements

CfnTransformJob.IS3DataSourceProperty
Back to top Generated by DocFX