CodeRepositoryReference
- class aws_cdk.interfaces.aws_sagemaker.CodeRepositoryReference(*, code_repository_id, code_repository_name)
Bases:
objectA reference to a CodeRepository resource.
- Parameters:
code_repository_id (
str) – The Id of the CodeRepository resource.code_repository_name (
str) – The CodeRepositoryName of the CodeRepository 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.interfaces import aws_sagemaker as interfaces_sagemaker code_repository_reference = interfaces_sagemaker.CodeRepositoryReference( code_repository_id="codeRepositoryId", code_repository_name="codeRepositoryName" )
Attributes
- code_repository_id
The Id of the CodeRepository resource.
- code_repository_name
The CodeRepositoryName of the CodeRepository resource.