Documentation ¶
Overview ¶
The CDK Construct Library for AWS::CodeStar
Index ¶
- func GitHubRepository_IsConstruct(x interface{}) *bool
- func GitHubRepository_IsOwnedResource(construct constructs.IConstruct) *bool
- func GitHubRepository_IsResource(construct constructs.IConstruct) *bool
- func NewGitHubRepository_Override(g GitHubRepository, scope constructs.Construct, id *string, ...)
- type GitHubRepository
- type GitHubRepositoryProps
- type IGitHubRepository
- type RepositoryVisibility
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GitHubRepository_IsConstruct ¶
func GitHubRepository_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Use this method instead of `instanceof` to properly detect `Construct` instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the `constructs` library on disk are seen as independent, completely different libraries. As a consequence, the class `Construct` in each copy of the `constructs` library is seen as a different class, and an instance of one class will not test as `instanceof` the other class. `npm install` will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the `constructs` library can be accidentally installed, and `instanceof` will behave unpredictably. It is safest to avoid using `instanceof`, and using this type-testing method instead.
Returns: true if `x` is an object created from a class which extends `Construct`. Experimental.
func GitHubRepository_IsOwnedResource ¶
func GitHubRepository_IsOwnedResource(construct constructs.IConstruct) *bool
Returns true if the construct was created by CDK, and false otherwise. Experimental.
func GitHubRepository_IsResource ¶
func GitHubRepository_IsResource(construct constructs.IConstruct) *bool
Check whether the given construct is a Resource. Experimental.
func NewGitHubRepository_Override ¶
func NewGitHubRepository_Override(g GitHubRepository, scope constructs.Construct, id *string, props *GitHubRepositoryProps)
Experimental.
Types ¶
type GitHubRepository ¶
type GitHubRepository interface { awscdk.Resource IGitHubRepository // The environment this resource belongs to. // // For resources that are created and managed by the CDK // (generally, those created by creating new class instances like Role, Bucket, etc.), // this is always the same as the environment of the stack they belong to; // however, for imported resources // (those obtained from static methods like fromRoleArn, fromBucketName, etc.), // that might be different than the stack they were imported into. // Experimental. Env() *awscdk.ResourceEnvironment // The tree node. // Experimental. Node() constructs.Node // the repository owner. // Experimental. Owner() *string // Returns a string-encoded token that resolves to the physical name that should be passed to the CloudFormation resource. // // This value will resolve to one of the following: // - a concrete value (e.g. `"my-awesome-bucket"`) // - `undefined`, when a name should be generated by CloudFormation // - a concrete name generated automatically during synthesis, in // cross-environment scenarios. // Experimental. PhysicalName() *string // the repository name. // Experimental. Repo() *string // The stack in which this resource is defined. // Experimental. Stack() awscdk.Stack // Apply the given removal policy to this resource. // // The Removal Policy controls what happens to this resource when it stops // being managed by CloudFormation, either because you've removed it from the // CDK application or because you've made a change that requires the resource // to be replaced. // // The resource can be deleted (`RemovalPolicy.DESTROY`), or left in your AWS // account for data recovery and cleanup later (`RemovalPolicy.RETAIN`). // Experimental. ApplyRemovalPolicy(policy awscdk.RemovalPolicy) // Experimental. GeneratePhysicalName() *string // Returns an environment-sensitive token that should be used for the resource's "ARN" attribute (e.g. `bucket.bucketArn`). // // Normally, this token will resolve to `arnAttr`, but if the resource is // referenced across environments, `arnComponents` will be used to synthesize // a concrete ARN with the resource's physical name. Make sure to reference // `this.physicalName` in `arnComponents`. // Experimental. GetResourceArnAttribute(arnAttr *string, arnComponents *awscdk.ArnComponents) *string // Returns an environment-sensitive token that should be used for the resource's "name" attribute (e.g. `bucket.bucketName`). // // Normally, this token will resolve to `nameAttr`, but if the resource is // referenced across environments, it will be resolved to `this.physicalName`, // which will be a concrete name. // Experimental. GetResourceNameAttribute(nameAttr *string) *string // Returns a string representation of this construct. // Experimental. ToString() *string }
The GitHubRepository resource.
Example:
import codestar "github.com/aws/aws-cdk-go/awscdkcodestaralpha" import s3 "github.com/aws/aws-cdk-go/awscdk" codestar.NewGitHubRepository(this, jsii.String("GitHubRepo"), &GitHubRepositoryProps{ Owner: jsii.String("aws"), RepositoryName: jsii.String("aws-cdk"), AccessToken: awscdk.SecretValue_SecretsManager(jsii.String("my-github-token"), &SecretsManagerSecretOptions{ JsonField: jsii.String("token"), }), ContentsBucket: s3.Bucket_FromBucketName(this, jsii.String("Bucket"), jsii.String("bucket-name")), ContentsKey: jsii.String("import.zip"), })
Experimental.
func NewGitHubRepository ¶
func NewGitHubRepository(scope constructs.Construct, id *string, props *GitHubRepositoryProps) GitHubRepository
Experimental.
type GitHubRepositoryProps ¶
type GitHubRepositoryProps struct { // The GitHub user's personal access token for the GitHub repository. // Experimental. AccessToken awscdk.SecretValue `field:"required" json:"accessToken" yaml:"accessToken"` // The name of the Amazon S3 bucket that contains the ZIP file with the content to be committed to the new repository. // Experimental. ContentsBucket awss3.IBucket `field:"required" json:"contentsBucket" yaml:"contentsBucket"` // The S3 object key or file name for the ZIP file. // Experimental. ContentsKey *string `field:"required" json:"contentsKey" yaml:"contentsKey"` // The GitHub user name for the owner of the GitHub repository to be created. // // If this // repository should be owned by a GitHub organization, provide its name. // Experimental. Owner *string `field:"required" json:"owner" yaml:"owner"` // The name of the repository you want to create in GitHub with AWS CloudFormation stack creation. // Experimental. RepositoryName *string `field:"required" json:"repositoryName" yaml:"repositoryName"` // The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket. // Experimental. ContentsS3Version *string `field:"optional" json:"contentsS3Version" yaml:"contentsS3Version"` // A comment or description about the new repository. // // This description is displayed in GitHub after the repository // is created. // Experimental. Description *string `field:"optional" json:"description" yaml:"description"` // Indicates whether to enable issues for the GitHub repository. // // You can use GitHub issues to track information // and bugs for your repository. // Experimental. EnableIssues *bool `field:"optional" json:"enableIssues" yaml:"enableIssues"` // Indicates whether the GitHub repository is a private repository. // // If so, you choose who can see and commit to // this repository. // Experimental. Visibility RepositoryVisibility `field:"optional" json:"visibility" yaml:"visibility"` }
Construction properties of `GitHubRepository`.
Example:
import codestar "github.com/aws/aws-cdk-go/awscdkcodestaralpha" import s3 "github.com/aws/aws-cdk-go/awscdk" codestar.NewGitHubRepository(this, jsii.String("GitHubRepo"), &GitHubRepositoryProps{ Owner: jsii.String("aws"), RepositoryName: jsii.String("aws-cdk"), AccessToken: awscdk.SecretValue_SecretsManager(jsii.String("my-github-token"), &SecretsManagerSecretOptions{ JsonField: jsii.String("token"), }), ContentsBucket: s3.Bucket_FromBucketName(this, jsii.String("Bucket"), jsii.String("bucket-name")), ContentsKey: jsii.String("import.zip"), })
Experimental.
type IGitHubRepository ¶
type IGitHubRepository interface { awscdk.IResource // the repository owner. // Experimental. Owner() *string // the repository name. // Experimental. Repo() *string }
GitHubRepository resource interface. Experimental.
type RepositoryVisibility ¶
type RepositoryVisibility string
Visibility of the GitHubRepository. Experimental.
const ( // private repository. // Experimental. RepositoryVisibility_PRIVATE RepositoryVisibility = "PRIVATE" // public repository. // Experimental. RepositoryVisibility_PUBLIC RepositoryVisibility = "PUBLIC" )