interface UpdateGitHubIntegrationDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.InspectorV2.CfnCodeSecurityIntegration.UpdateGitHubIntegrationDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinspectorv2#CfnCodeSecurityIntegration_UpdateGitHubIntegrationDetailProperty |
Java | software.amazon.awscdk.services.inspectorv2.CfnCodeSecurityIntegration.UpdateGitHubIntegrationDetailProperty |
Python | aws_cdk.aws_inspectorv2.CfnCodeSecurityIntegration.UpdateGitHubIntegrationDetailProperty |
TypeScript | aws-cdk-lib » aws_inspectorv2 » CfnCodeSecurityIntegration » UpdateGitHubIntegrationDetailProperty |
Contains details required to update an integration with GitHub.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_inspectorv2 as inspectorv2 } from 'aws-cdk-lib';
const updateGitHubIntegrationDetailProperty: inspectorv2.CfnCodeSecurityIntegration.UpdateGitHubIntegrationDetailProperty = {
code: 'code',
installationId: 'installationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The authorization code received from GitHub to update the integration. |
| installation | string | The installation ID of the GitHub App associated with the integration. |
code
Type:
string
The authorization code received from GitHub to update the integration.
installationId
Type:
string
The installation ID of the GitHub App associated with the integration.

.NET
Go
Java
Python
TypeScript