Show / Hide Table of Contents

Class CfnModelPackagePropsMixin.SourceAlgorithmProperty

Specifies an algorithm that was used to create the model package.

Inheritance
object
CfnModelPackagePropsMixin.SourceAlgorithmProperty
Implements
CfnModelPackagePropsMixin.ISourceAlgorithmProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnModelPackagePropsMixin.SourceAlgorithmProperty : CfnModelPackagePropsMixin.ISourceAlgorithmProperty
Syntax (vb)
Public Class CfnModelPackagePropsMixin.SourceAlgorithmProperty Implements CfnModelPackagePropsMixin.ISourceAlgorithmProperty
Remarks

The algorithm must be either an algorithm resource in your SageMaker account or an algorithm in AWS Marketplace that you are subscribed to.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-sourcealgorithm.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.Mixins.Preview.AWS.SageMaker.Mixins;

             var sourceAlgorithmProperty = new SourceAlgorithmProperty {
                 AlgorithmName = "algorithmName",
                 ModelDataUrl = "modelDataUrl"
             };

Synopsis

Constructors

SourceAlgorithmProperty()

Specifies an algorithm that was used to create the model package.

Properties

AlgorithmName

The name of an algorithm that was used to create the model package.

ModelDataUrl

The Amazon S3 path where the model artifacts, which result from model training, are stored.

Constructors

SourceAlgorithmProperty()

Specifies an algorithm that was used to create the model package.

public SourceAlgorithmProperty()
Remarks

The algorithm must be either an algorithm resource in your SageMaker account or an algorithm in AWS Marketplace that you are subscribed to.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-sourcealgorithm.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.Mixins.Preview.AWS.SageMaker.Mixins;

             var sourceAlgorithmProperty = new SourceAlgorithmProperty {
                 AlgorithmName = "algorithmName",
                 ModelDataUrl = "modelDataUrl"
             };

Properties

AlgorithmName

The name of an algorithm that was used to create the model package.

public string? AlgorithmName { get; set; }
Property Value

string

Remarks

The algorithm must be either an algorithm resource in your SageMaker account or an algorithm in AWS Marketplace that you are subscribed to.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-sourcealgorithm.html#cfn-sagemaker-modelpackage-sourcealgorithm-algorithmname

ModelDataUrl

The Amazon S3 path where the model artifacts, which result from model training, are stored.

public string? ModelDataUrl { get; set; }
Property Value

string

Remarks

This path must point to a single gzip compressed tar archive ( .tar.gz suffix).

The model artifacts must be in an S3 bucket that is in the same AWS region as the algorithm.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelpackage-sourcealgorithm.html#cfn-sagemaker-modelpackage-sourcealgorithm-modeldataurl

Implements

CfnModelPackagePropsMixin.ISourceAlgorithmProperty
Back to top Generated by DocFX