Show / Hide Table of Contents

Interface ICodeCommitSourceCodeProviderProps

(experimental) Properties for a CodeCommit source code provider.

Namespace: Amazon.CDK.AWS.Amplify.Alpha
Assembly: Amazon.CDK.AWS.Amplify.Alpha.dll
Syntax (csharp)
public interface ICodeCommitSourceCodeProviderProps
Syntax (vb)
Public Interface ICodeCommitSourceCodeProviderProps
Remarks

Stability: Experimental

ExampleMetadata: infused

Examples
using Amazon.CDK.AWS.CodeCommit;


             var repository = new Repository(this, "Repo", new RepositoryProps {
                 RepositoryName = "my-repo"
             });

             var amplifyApp = new App(this, "App", new AppProps {
                 SourceCodeProvider = new CodeCommitSourceCodeProvider(new CodeCommitSourceCodeProviderProps { Repository = repository })
             });

Synopsis

Properties

Repository

(experimental) The CodeCommit repository.

Properties

Repository

(experimental) The CodeCommit repository.

IRepository Repository { get; }
Property Value

IRepository

Remarks

Stability: Experimental

Back to top Generated by DocFX