interface SpaceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.SpaceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#SpaceReference |
Java | software.amazon.awscdk.services.sagemaker.SpaceReference |
Python | aws_cdk.aws_sagemaker.SpaceReference |
TypeScript | aws-cdk-lib » aws_sagemaker » SpaceReference |
A reference to a Space 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 spaceReference: sagemaker.SpaceReference = {
domainId: 'domainId',
spaceArn: 'spaceArn',
spaceName: 'spaceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainId of the Space resource. |
| space | string | The ARN of the Space resource. |
| space | string | The SpaceName of the Space resource. |
domainId
Type:
string
The DomainId of the Space resource.
spaceArn
Type:
string
The ARN of the Space resource.
spaceName
Type:
string
The SpaceName of the Space resource.

.NET
Go
Java
Python
TypeScript