interface AppReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.AppReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#AppReference |
Java | software.amazon.awscdk.services.sagemaker.AppReference |
Python | aws_cdk.aws_sagemaker.AppReference |
TypeScript | aws-cdk-lib » aws_sagemaker » AppReference |
A reference to a App resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const appReference: sagemaker.AppReference = {
appArn: 'appArn',
appName: 'appName',
appType: 'appType',
domainId: 'domainId',
userProfileName: 'userProfileName',
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The ARN of the App resource. |
| app | string | The AppName of the App resource. |
| app | string | The AppType of the App resource. |
| domain | string | The DomainId of the App resource. |
| user | string | The UserProfileName of the App resource. |
appArn
Type:
string
The ARN of the App resource.
appName
Type:
string
The AppName of the App resource.
appType
Type:
string
The AppType of the App resource.
domainId
Type:
string
The DomainId of the App resource.
userProfileName
Type:
string
The UserProfileName of the App resource.

.NET
Go
Java
Python
TypeScript