Interface GitLabSourceCodeProviderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GitLabSourceCodeProviderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:07.664Z")
@Stability(Experimental)
public interface GitLabSourceCodeProviderProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for a 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 TypeInterfaceDescriptionstatic final class
A builder forGitLabSourceCodeProviderProps
static final class
An implementation forGitLabSourceCodeProviderProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOauthToken
(experimental) A personal access token with therepo
scope. -
getOwner
(experimental) The user or organization owning the repository. -
getRepository
(experimental) The name of the repository. -
builder
-