Skip navigation links

Package software.amazon.awscdk.services.codestar

AWS::CodeStar Construct Library

See: Description

Package software.amazon.awscdk.services.codestar Description

AWS::CodeStar Construct Library

GitHub Repository

To create a new GitHub Repository and commit the assets from S3 bucket into the repository after it is created:

 // Example automatically generated from non-compiling source. May contain errors.
 import software.amazon.awscdk.core.*;
 import software.amazon.awscdk.core.*;
 
 
 GitHubRepository.Builder.create(stack, "GitHubRepo")
         .owner("aws")
         .repositoryName("aws-cdk")
         .accessToken(cdk.SecretValue.secretsManager("my-github-token", Map.of(
                 "jsonField", "token")))
         .contentsBucket(Bucket.fromBucketName(stack, "Bucket", "bucket-name"))
         .contentsKey("import.zip")
         .build();
 

Update or Delete the GitHubRepository

At this moment, updates to the GitHubRepository are not supported and the repository will not be deleted upon the deletion of the CloudFormation stack. You will need to update or delete the GitHub repository manually.

Skip navigation links

Copyright © 2022. All rights reserved.