Show / Hide Table of Contents

Class CfnAppMixinProps

Properties for CfnAppPropsMixin.

Inheritance
object
CfnAppMixinProps
Implements
ICfnAppMixinProps
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 CfnAppMixinProps : ICfnAppMixinProps
Syntax (vb)
Public Class CfnAppMixinProps Implements ICfnAppMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-app.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 cfnAppMixinProps = new CfnAppMixinProps {
                 AppName = "appName",
                 AppType = "appType",
                 DomainId = "domainId",
                 RecoveryMode = false,
                 ResourceSpec = new ResourceSpecProperty {
                     InstanceType = "instanceType",
                     LifecycleConfigArn = "lifecycleConfigArn",
                     SageMakerImageArn = "sageMakerImageArn",
                     SageMakerImageVersionArn = "sageMakerImageVersionArn"
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 UserProfileName = "userProfileName"
             };

Synopsis

Constructors

CfnAppMixinProps()

Properties for CfnAppPropsMixin.

Properties

AppName

The name of the app.

AppType

The type of app.

DomainId

The domain ID.

RecoveryMode

Indicates whether the application is launched in recovery mode.

ResourceSpec

Specifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on.

Tags

An array of key-value pairs to apply to this resource.

UserProfileName

The user profile name.

Constructors

CfnAppMixinProps()

Properties for CfnAppPropsMixin.

public CfnAppMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-app.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 cfnAppMixinProps = new CfnAppMixinProps {
                 AppName = "appName",
                 AppType = "appType",
                 DomainId = "domainId",
                 RecoveryMode = false,
                 ResourceSpec = new ResourceSpecProperty {
                     InstanceType = "instanceType",
                     LifecycleConfigArn = "lifecycleConfigArn",
                     SageMakerImageArn = "sageMakerImageArn",
                     SageMakerImageVersionArn = "sageMakerImageVersionArn"
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 UserProfileName = "userProfileName"
             };

Properties

AppName

The name of the app.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-app.html#cfn-sagemaker-app-appname

AppType

The type of app.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-app.html#cfn-sagemaker-app-apptype

DomainId

The domain ID.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-app.html#cfn-sagemaker-app-domainid

RecoveryMode

Indicates whether the application is launched in recovery mode.

public object? RecoveryMode { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-app.html#cfn-sagemaker-app-recoverymode

Type union: either bool or IResolvable

ResourceSpec

Specifies the ARNs of a SageMaker image and SageMaker image version, and the instance type that the version runs on.

public object? ResourceSpec { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-app.html#cfn-sagemaker-app-resourcespec

Type union: either IResolvable or CfnAppPropsMixin.IResourceSpecProperty

Tags

An array of key-value pairs to apply to this resource.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

For more information, see Tag .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-app.html#cfn-sagemaker-app-tags

UserProfileName

The user profile name.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-app.html#cfn-sagemaker-app-userprofilename

Implements

ICfnAppMixinProps
Back to top Generated by DocFX