interface UpdateGitHubIntegrationDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.InspectorV2.Mixins.CfnCodeSecurityIntegrationPropsMixin.UpdateGitHubIntegrationDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsinspectorv2/mixins#CfnCodeSecurityIntegrationPropsMixin_UpdateGitHubIntegrationDetailProperty |
Java | software.amazon.awscdk.mixins.preview.services.inspectorv2.mixins.CfnCodeSecurityIntegrationPropsMixin.UpdateGitHubIntegrationDetailProperty |
Python | aws_cdk.mixins_preview.aws_inspectorv2.mixins.CfnCodeSecurityIntegrationPropsMixin.UpdateGitHubIntegrationDetailProperty |
TypeScript | @aws-cdk/mixins-preview » aws_inspectorv2 » mixins » CfnCodeSecurityIntegrationPropsMixin » 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 { mixins as inspectorv2_mixins } from '@aws-cdk/mixins-preview/aws-inspectorv2';
const updateGitHubIntegrationDetailProperty: inspectorv2_mixins.CfnCodeSecurityIntegrationPropsMixin.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
(optional)
The authorization code received from GitHub to update the integration.
installationId?
Type:
string
(optional)
The installation ID of the GitHub App associated with the integration.

.NET
Go
Java
Python
TypeScript