SpaceReference
- class aws_cdk.aws_sagemaker.SpaceReference(*, domain_id, space_arn, space_name)
Bases:
object
A reference to a Space resource.
- Parameters:
domain_id (
str
) – The DomainId of the Space resource.space_arn (
str
) – The ARN of the Space resource.space_name (
str
) – The SpaceName of the Space resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_sagemaker as sagemaker space_reference = sagemaker.SpaceReference( domain_id="domainId", space_arn="spaceArn", space_name="spaceName" )
Attributes
- domain_id
The DomainId of the Space resource.
- space_arn
The ARN of the Space resource.
- space_name
The SpaceName of the Space resource.