@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:01.413Z") @Stability(value=Experimental) public interface GitLabSourceCodeProviderProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.core.*;
import software.amazon.awscdk.services.amplify.*;
SecretValue secretValue;
GitLabSourceCodeProviderProps gitLabSourceCodeProviderProps = GitLabSourceCodeProviderProps.builder()
.oauthToken(secretValue)
.owner("owner")
.repository("repository")
.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.