Documentation
¶
Overview ¶
AWS CDK Construct Library to interact with GitHub's API.
AWS CDK Construct Library to interact with GitHub's API.
AWS CDK Construct Library to interact with GitHub's API.
AWS CDK Construct Library to interact with GitHub's API.
AWS CDK Construct Library to interact with GitHub's API.
AWS CDK Construct Library to interact with GitHub's API.
AWS CDK Construct Library to interact with GitHub's API.
AWS CDK Construct Library to interact with GitHub's API.
AWS CDK Construct Library to interact with GitHub's API.
AWS CDK Construct Library to interact with GitHub's API.
AWS CDK Construct Library to interact with GitHub's API.
Index ¶
- func ActionEnvironmentSecret_IsConstruct(x interface{}) *bool
- func ActionSecret_IsConstruct(x interface{}) *bool
- func GitHubResource_IsConstruct(x interface{}) *bool
- func NewActionEnvironmentSecret_Override(a ActionEnvironmentSecret, scope constructs.Construct, id *string, ...)
- func NewActionSecret_Override(a ActionSecret, scope constructs.Construct, id *string, ...)
- func NewGitHubResource_Override(g GitHubResource, scope constructs.Construct, id *string, ...)
- type ActionEnvironmentSecret
- type ActionEnvironmentSecretProps
- type ActionSecret
- type ActionSecretProps
- type GitHubResource
- type GitHubResourceProps
- type IGitHubRepository
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ActionEnvironmentSecret_IsConstruct ¶
func ActionEnvironmentSecret_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead.
func ActionSecret_IsConstruct ¶
func ActionSecret_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead.
func GitHubResource_IsConstruct ¶ added in v0.0.33
func GitHubResource_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead.
func NewActionEnvironmentSecret_Override ¶
func NewActionEnvironmentSecret_Override(a ActionEnvironmentSecret, scope constructs.Construct, id *string, props *ActionEnvironmentSecretProps)
Experimental.
func NewActionSecret_Override ¶
func NewActionSecret_Override(a ActionSecret, scope constructs.Construct, id *string, props *ActionSecretProps)
Experimental.
func NewGitHubResource_Override ¶ added in v0.0.33
func NewGitHubResource_Override(g GitHubResource, scope constructs.Construct, id *string, props *GitHubResourceProps)
Experimental.
Types ¶
type ActionEnvironmentSecret ¶
type ActionEnvironmentSecret interface {
constructs.Construct
// The tree node.
// Experimental.
Node() constructs.Node
// Returns a string representation of this construct.
// Experimental.
ToString() *string
}
Experimental.
func NewActionEnvironmentSecret ¶
func NewActionEnvironmentSecret(scope constructs.Construct, id *string, props *ActionEnvironmentSecretProps) ActionEnvironmentSecret
Experimental.
type ActionEnvironmentSecretProps ¶
type ActionEnvironmentSecretProps struct {
// The GithHub environment name which the secret should be stored in.
// Experimental.
Environment *string `field:"required" json:"environment" yaml:"environment"`
// The AWS secret in which the OAuth GitHub (personal) access token is stored.
// Experimental.
GithubTokenSecret awssecretsmanager.ISecret `field:"required" json:"githubTokenSecret" yaml:"githubTokenSecret"`
// The GitHub repository information (owner and name).
// Experimental.
Repository IGitHubRepository `field:"required" json:"repository" yaml:"repository"`
// The GitHub secret name to be stored.
// Experimental.
RepositorySecretName *string `field:"required" json:"repositorySecretName" yaml:"repositorySecretName"`
// This AWS secret value will be stored in GitHub as a secret (under the name of repositorySecretName).
// Experimental.
SourceSecret awssecretsmanager.ISecret `field:"required" json:"sourceSecret" yaml:"sourceSecret"`
// The key of a JSON field to retrieve in sourceSecret.
//
// This can only be used if the secret stores a JSON object.
// Experimental.
SourceSecretJsonField *string `field:"optional" json:"sourceSecretJsonField" yaml:"sourceSecretJsonField"`
}
Experimental.
type ActionSecret ¶
type ActionSecret interface {
constructs.Construct
// The tree node.
// Experimental.
Node() constructs.Node
// Returns a string representation of this construct.
// Experimental.
ToString() *string
}
Experimental.
func NewActionSecret ¶
func NewActionSecret(scope constructs.Construct, id *string, props *ActionSecretProps) ActionSecret
Experimental.
type ActionSecretProps ¶
type ActionSecretProps struct {
// The AWS secret in which the OAuth GitHub (personal) access token is stored.
// Experimental.
GithubTokenSecret awssecretsmanager.ISecret `field:"required" json:"githubTokenSecret" yaml:"githubTokenSecret"`
// The GitHub repository information (owner and name).
// Experimental.
Repository IGitHubRepository `field:"required" json:"repository" yaml:"repository"`
// The GitHub secret name to be stored.
// Experimental.
RepositorySecretName *string `field:"required" json:"repositorySecretName" yaml:"repositorySecretName"`
// This AWS secret value will be stored in GitHub as a secret (under the name of repositorySecretName).
// Experimental.
SourceSecret awssecretsmanager.ISecret `field:"required" json:"sourceSecret" yaml:"sourceSecret"`
// The key of a JSON field to retrieve in sourceSecret.
//
// This can only be used if the secret stores a JSON object.
// Experimental.
SourceSecretJsonField *string `field:"optional" json:"sourceSecretJsonField" yaml:"sourceSecretJsonField"`
}
Experimental.
type GitHubResource ¶ added in v0.0.33
type GitHubResource interface {
constructs.Construct
// The tree node.
// Experimental.
Node() constructs.Node
// Returns a string representation of this construct.
// Experimental.
ToString() *string
}
Experimental.
func NewGitHubResource ¶ added in v0.0.33
func NewGitHubResource(scope constructs.Construct, id *string, props *GitHubResourceProps) GitHubResource
Experimental.
type GitHubResourceProps ¶ added in v0.0.33
type GitHubResourceProps struct {
// The GitHub api endpoint url for creating resources in format: `POST /repos/OWNER/REPO/issues`.
//
// This is called when the GitHubResource is created.
//
// Example:
// “`
// const createRequestEndpoint = 'POST /repos/octocat/Hello-World/issues'
// “`.
// Experimental.
CreateRequestEndpoint *string `field:"required" json:"createRequestEndpoint" yaml:"createRequestEndpoint"`
// The GitHub api endpoint url to delete this resource in format: `POST /repos/OWNER/REPO/issues`.
//
// This is called when the GitHubResource is deleted/destroyed.
//
// Example:
// “`
// const deleteRequestEndpoint = 'PATCH repos/octocat/Hello-World/issues/1'
// “`
// If you want to use the @see {@link GitHubResourceProps#createRequestResultParameter}, you can use the following syntax (assuming you have set createRequestResultParameter to `"number"`):
// “`
// const deleteRequestEndpoint = 'PATCH repos/octocat/Hello-World/:number'
// “`.
// Experimental.
DeleteRequestEndpoint *string `field:"required" json:"deleteRequestEndpoint" yaml:"deleteRequestEndpoint"`
// The AWS secret in which the OAuth GitHub (personal) access token is stored.
// Experimental.
GithubTokenSecret awssecretsmanager.ISecret `field:"required" json:"githubTokenSecret" yaml:"githubTokenSecret"`
// The GitHub api request payload for creating resources. This is a JSON parseable string.
//
// Used for @see {@link GitHubResourceProps#createRequestEndpoint}.
//
// Example:
// “`
// const createRequestPayload = JSON.stringify({ title: 'Found a bug', body: "I'm having a problem with this.", assignees: ['octocat'], milestone: 1, labels: ['bug'] })
// “`.
// Experimental.
CreateRequestPayload *string `field:"optional" json:"createRequestPayload" yaml:"createRequestPayload"`
// Used to extract a value from the result of the createRequest(Endpoint) to be used in update/deleteRequests.
//
// Example: `"number"` (for the issue number)
//
// When this parameter is set and can be extracted from the result, the extracted value will be used for the PhyscialResourceId of the CustomResource.
// Changing the parameter once the stack is deployed is not supported.
// Experimental.
CreateRequestResultParameter *string `field:"optional" json:"createRequestResultParameter" yaml:"createRequestResultParameter"`
// The GitHub api request payload to delete this resource. This is a JSON parseable string.
//
// Used for @see {@link GitHubResourceProps#deleteRequestEndpoint}.
//
// Example:
// “`
// const deleteRequestPayload = JSON.stringify({ state: 'closed' })
// “`.
// Experimental.
DeleteRequestPayload *string `field:"optional" json:"deleteRequestPayload" yaml:"deleteRequestPayload"`
// The GitHub api endpoint url to update this resource in format: `POST /repos/OWNER/REPO/issues`.
//
// This is called when the GitHubResource is updated.
//
// In most of the cases you want to either omit this or use the same value as createRequestEndpoint.
//
// Example:
// “`
// const updateRequestEndpoint = 'PATCH repos/octocat/Hello-World/issues/1'
// “`
// If you want to use the @see {@link GitHubResourceProps#createRequestResultParameter}, you can use the following syntax (assuming you have set createRequestResultParameter to `"number"`):
// “`
// const updateRequestEndpoint = 'PATCH repos/octocat/Hello-World/:number'
// “`.
// Experimental.
UpdateRequestEndpoint *string `field:"optional" json:"updateRequestEndpoint" yaml:"updateRequestEndpoint"`
// The GitHub api request payload to update this resources. This is a JSON parseable string.
//
// Used for @see {@link GitHubResourceProps#createRequestEndpoint}.
//
// Example:
// “`
// const updateRequestPayload = JSON.stringify({ title: 'Found a bug', body: "I'm having a problem with this.", assignees: ['octocat'], milestone: 1, state: 'open', labels: ['bug'] })
// “`.
// Experimental.
UpdateRequestPayload *string `field:"optional" json:"updateRequestPayload" yaml:"updateRequestPayload"`
// The response body of the last GitHub api request will be written to this ssm parameter.
// Experimental.
WriteResponseToSSMParameter awsssm.IParameter `field:"optional" json:"writeResponseToSSMParameter" yaml:"writeResponseToSSMParameter"`
}
Experimental.