interface GitHubConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnAssociation.GitHubConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnAssociation_GitHubConfigurationProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnAssociation.GitHubConfigurationProperty |
Python | aws_cdk.aws_devopsagent.CfnAssociation.GitHubConfigurationProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnAssociation » GitHubConfigurationProperty |
Configuration for GitHub repository integration.
Defines the repository name, numeric repository ID, owner name, and owner type (user or organization) required for the Agent Space to access and interact with the GitHub repository.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
const gitHubConfigurationProperty: devopsagent.CfnAssociation.GitHubConfigurationProperty = {
owner: 'owner',
ownerType: 'ownerType',
repoId: 'repoId',
repoName: 'repoName',
};
Properties
| Name | Type | Description |
|---|---|---|
| owner | string | Repository owner. |
| owner | string | Type of repository owner. |
| repo | string | Associated Github repo ID. |
| repo | string | Associated Github repo name. |
owner
Type:
string
Repository owner.
ownerType
Type:
string
Type of repository owner.
repoId
Type:
string
Associated Github repo ID.
repoName
Type:
string
Associated Github repo name.

.NET
Go
Java
Python
TypeScript