Show / Hide Table of Contents

Class CfnProject.GitSubmodulesConfigProperty

GitSubmodulesConfig is a property of the AWS CodeBuild Project Source property type that specifies information about the Git submodules configuration for the build project.

Inheritance
object
CfnProject.GitSubmodulesConfigProperty
Implements
CfnProject.IGitSubmodulesConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CodeBuild
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnProject.GitSubmodulesConfigProperty : CfnProject.IGitSubmodulesConfigProperty
Syntax (vb)
Public Class CfnProject.GitSubmodulesConfigProperty Implements CfnProject.IGitSubmodulesConfigProperty
Remarks

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

             var gitSubmodulesConfigProperty = new GitSubmodulesConfigProperty {
                 FetchSubmodules = false
             };

Synopsis

Constructors

GitSubmodulesConfigProperty()

GitSubmodulesConfig is a property of the AWS CodeBuild Project Source property type that specifies information about the Git submodules configuration for the build project.

Properties

FetchSubmodules

Set to true to fetch Git submodules for your AWS CodeBuild build project.

Constructors

GitSubmodulesConfigProperty()

GitSubmodulesConfig is a property of the AWS CodeBuild Project Source property type that specifies information about the Git submodules configuration for the build project.

public GitSubmodulesConfigProperty()
Remarks

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

             var gitSubmodulesConfigProperty = new GitSubmodulesConfigProperty {
                 FetchSubmodules = false
             };

Properties

FetchSubmodules

Set to true to fetch Git submodules for your AWS CodeBuild build project.

public object FetchSubmodules { get; set; }
Property Value

object

Remarks

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

Type union: either bool or IResolvable

Implements

CfnProject.IGitSubmodulesConfigProperty
Back to top Generated by DocFX