Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-codesecurityintegration-updatedetails.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-codesecurityintegration-updatedetails.html#cfn-inspectorv2-codesecurityintegration-updatedetails-github

Type union: either IResolvable or CfnCodeSecurityIntegrationPropsMixin.IUpdateGitHubIntegrationDetailProperty

GitlabSelfManaged

Details specific to updating an integration with a self-managed GitLab instance.

object? GitlabSelfManaged { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-codesecurityintegration-updatedetails.html#cfn-inspectorv2-codesecurityintegration-updatedetails-gitlabselfmanaged

Type union: either IResolvable or CfnCodeSecurityIntegrationPropsMixin.IUpdateGitLabSelfManagedIntegrationDetailProperty

Back to top Generated by DocFX