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
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
Remarks
Type
The authorization type to use.
string? Type { get; }
Property Value
Remarks
Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.