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
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 software.amazon.awscdk.services.devopsagent.*;
 GitHubConfigurationProperty gitHubConfigurationProperty = GitHubConfigurationProperty.builder()
         .owner("owner")
         .ownerType("ownerType")
         .repoId("repoId")
         .repoName("repoName")
         .build();
 

See Also: