RepositoryReference
- class aws_cdk.aws_codecommit.RepositoryReference(*, repository_arn, repository_id)
Bases:
object
A reference to a Repository resource.
- Parameters:
repository_arn (
str
) – The ARN of the Repository resource.repository_id (
str
) – The Id of the Repository 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_codecommit as codecommit repository_reference = codecommit.RepositoryReference( repository_arn="repositoryArn", repository_id="repositoryId" )
Attributes
- repository_arn
The ARN of the Repository resource.
- repository_id
The Id of the Repository resource.