Class GitLabSourceCodeProvider
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.amplify.GitLabSourceCodeProvider
- All Implemented Interfaces:
ISourceCodeProvider,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:42.159Z")
@Stability(Experimental)
public class GitLabSourceCodeProvider
extends software.amazon.jsii.JsiiObject
implements ISourceCodeProvider
(experimental) GitLab source code provider.
Example:
App amplifyApp = App.Builder.create(this, "MyApp")
.sourceCodeProvider(GitLabSourceCodeProvider.Builder.create()
.owner("<user>")
.repository("<repo>")
.oauthToken(SecretValue.secretsManager("my-gitlab-token"))
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class(experimental) A fluent builder forGitLabSourceCodeProvider.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.amplify.ISourceCodeProvider
ISourceCodeProvider.Jsii$Default, ISourceCodeProvider.Jsii$Proxy -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedGitLabSourceCodeProvider(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedGitLabSourceCodeProvider(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescription(experimental) Binds the source code provider to an app.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
GitLabSourceCodeProvider
protected GitLabSourceCodeProvider(software.amazon.jsii.JsiiObjectRef objRef) -
GitLabSourceCodeProvider
protected GitLabSourceCodeProvider(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
GitLabSourceCodeProvider
@Stability(Experimental) public GitLabSourceCodeProvider(@NotNull GitLabSourceCodeProviderProps props) - Parameters:
props- This parameter is required.
-
-
Method Details
-
bind
(experimental) Binds the source code provider to an app.- Specified by:
bindin interfaceISourceCodeProvider- Parameters:
_app- This parameter is required.
-