| Interface | Description |
|---|---|
| CfnGitHubRepository.CodeProperty |
The `Code` property type specifies information about code to be committed.
|
| CfnGitHubRepository.S3Property |
The `S3` property type specifies information about the Amazon S3 bucket that contains the code to be committed to the new repository.
|
| CfnGitHubRepositoryProps |
Properties for defining a `CfnGitHubRepository`.
|
| GitHubRepositoryProps |
(experimental) Construction properties of
GitHubRepository. |
| IGitHubRepository |
(experimental) GitHubRepository resource interface.
|
| IGitHubRepository.Jsii$Default |
Internal default implementation for
IGitHubRepository. |
| Enum | Description |
|---|---|
| RepositoryVisibility |
(experimental) Visibility of the GitHubRepository.
|
To create a new GitHub Repository and commit the assets from S3 bucket into the repository after it is created:
import software.amazon.awscdk.core.*;
import software.amazon.awscdk.core.*;
GitHubRepository.Builder.create(this, "GitHubRepo")
.owner("aws")
.repositoryName("aws-cdk")
.accessToken(SecretValue.secretsManager("my-github-token", SecretsManagerSecretOptions.builder()
.jsonField("token")
.build()))
.contentsBucket(Bucket.fromBucketName(this, "Bucket", "bucket-name"))
.contentsKey("import.zip")
.build();
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.
Copyright © 2022. All rights reserved.