RepositoryReference
- class aws_cdk.interfaces.aws_codecommit.RepositoryReference(*, repository_arn, repository_id)
Bases:
objectA 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.interfaces import aws_codecommit as interfaces_aws_codecommit repository_reference = interfaces_aws_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.