Class CfnAppMixinProps
Properties for CfnAppPropsMixin.
Implements
Inherited Members
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
Remarks
AppType
The type of app.
public string? AppType { get; set; }
Property Value
Remarks
DomainId
The domain ID.
public string? DomainId { get; set; }
Property Value
Remarks
RecoveryMode
Indicates whether the application is launched in recovery mode.
public object? RecoveryMode { get; set; }
Property Value
Remarks
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
Remarks
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 .
UserProfileName
The user profile name.
public string? UserProfileName { get; set; }