@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:40.888Z") @Stability(value=Experimental) public interface GitLabSourceCodeProviderProps extends software.amazon.jsii.JsiiSerializable
Example:
App amplifyApp = App.Builder.create(this, "MyApp")
.sourceCodeProvider(GitLabSourceCodeProvider.Builder.create()
.owner("<user>")
.repository("<repo>")
.oauthToken(SecretValue.secretsManager("my-gitlab-token"))
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
GitLabSourceCodeProviderProps.Builder
A builder for
GitLabSourceCodeProviderProps |
static class |
GitLabSourceCodeProviderProps.Jsii$Proxy
An implementation for
GitLabSourceCodeProviderProps |
| Modifier and Type | Method and Description |
|---|---|
static GitLabSourceCodeProviderProps.Builder |
builder() |
SecretValue |
getOauthToken()
(experimental) A personal access token with the `repo` scope.
|
String |
getOwner()
(experimental) The user or organization owning the repository.
|
String |
getRepository()
(experimental) The name of the repository.
|
@Stability(value=Experimental) @NotNull SecretValue getOauthToken()
@Stability(value=Experimental) @NotNull String getOwner()
@Stability(value=Experimental) @NotNull String getRepository()
@Stability(value=Experimental) static GitLabSourceCodeProviderProps.Builder builder()
Copyright © 2022. All rights reserved.