Class GitLabSourceCodeProvider
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.amplify.alpha.GitLabSourceCodeProvider
- All Implemented Interfaces:
ISourceCodeProvider
,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:07.664Z")
@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
Modifier and TypeClassDescriptionstatic final class
(experimental) A fluent builder forGitLabSourceCodeProvider
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.amplify.alpha.ISourceCodeProvider
ISourceCodeProvider.Jsii$Default, ISourceCodeProvider.Jsii$Proxy
-
Constructor Summary
ModifierConstructorDescriptionprotected
GitLabSourceCodeProvider
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
GitLabSourceCodeProvider
(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, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods 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:
bind
in interfaceISourceCodeProvider
- Parameters:
_app
- This parameter is required.
-