Interface CfnCodeSecurityIntegrationPropsMixin.IUpdateDetailsProperty
Contains details required to update a code security integration with a specific repository provider.
Namespace: Amazon.CDK.Mixins.Preview.AWS.InspectorV2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnCodeSecurityIntegrationPropsMixin.IUpdateDetailsProperty
Syntax (vb)
Public Interface CfnCodeSecurityIntegrationPropsMixin.IUpdateDetailsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.InspectorV2.Mixins;
var updateDetailsProperty = new UpdateDetailsProperty {
Github = new UpdateGitHubIntegrationDetailProperty {
Code = "code",
InstallationId = "installationId"
},
GitlabSelfManaged = new UpdateGitLabSelfManagedIntegrationDetailProperty {
AuthCode = "authCode"
}
};
Synopsis
Properties
| Github | Details specific to updating an integration with GitHub. |
| GitlabSelfManaged | Details specific to updating an integration with a self-managed GitLab instance. |
Properties
Github
Details specific to updating an integration with GitHub.
object? Github { get; }
Property Value
Remarks
Type union: either IResolvable or CfnCodeSecurityIntegrationPropsMixin.IUpdateGitHubIntegrationDetailProperty
GitlabSelfManaged
Details specific to updating an integration with a self-managed GitLab instance.
object? GitlabSelfManaged { get; }