Interface CfnAssociation.GitHubConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAssociation.GitHubConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAssociation

@Stability(Stable) public static interface CfnAssociation.GitHubConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.devopsagent.*;
 GitHubConfigurationProperty gitHubConfigurationProperty = GitHubConfigurationProperty.builder()
         .owner("owner")
         .ownerType("ownerType")
         .repoId("repoId")
         .repoName("repoName")
         .build();
 

See Also: