Show / Hide Table of Contents

Interface CfnProjectPropsMixin.ISourceAuthProperty

SourceAuth is a property of the AWS CodeBuild Project Source property type that specifies authorization settings for AWS CodeBuild to access the source code to be built.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CodeBuild
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnProjectPropsMixin.ISourceAuthProperty
Syntax (vb)
Public Interface CfnProjectPropsMixin.ISourceAuthProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.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.CfnPropertyMixins.AWS.CodeBuild;

             var sourceAuthProperty = new SourceAuthProperty {
                 Resource = "resource",
                 Type = "type"
             };

Synopsis

Properties

Resource

The resource value that applies to the specified authorization type.

Type

The authorization type to use.

Properties

Resource

The resource value that applies to the specified authorization type.

string? Resource { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource

Type

The authorization type to use.

string? Type { get; }
Property Value

string

Remarks

Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type

Back to top Generated by DocFX