constructor()

in src/index.ts [19:26]


  constructor(scope: Construct, id: string, props: SampleRepositoryProps) {
    super(scope, id);

    new ecr.Repository(this, 'Repository', {
      repositoryName: props.name,
    });

  }