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 |
GitHub repository integration configuration.
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