interface SourceCodeProviderConfig
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Amplify.Alpha.SourceCodeProviderConfig |
![]() | github.com/aws/aws-cdk-go/awscdkamplifyalpha/v2#SourceCodeProviderConfig |
![]() | software.amazon.awscdk.services.amplify.alpha.SourceCodeProviderConfig |
![]() | aws_cdk.aws_amplify_alpha.SourceCodeProviderConfig |
![]() | @aws-cdk/aws-amplify-alpha ยป SourceCodeProviderConfig |
Obtainable from
Code
.bind()
, Git
.bind()
, Git
.bind()
Configuration for the source code provider.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as amplify_alpha from '@aws-cdk/aws-amplify-alpha';
import * as cdk from 'aws-cdk-lib';
declare const secretValue: cdk.SecretValue;
const sourceCodeProviderConfig: amplify_alpha.SourceCodeProviderConfig = {
repository: 'repository',
// the properties below are optional
accessToken: secretValue,
oauthToken: secretValue,
};
Properties
Name | Type | Description |
---|---|---|
repository | string | The repository for the application. Must use the HTTPS protocol. |
access | Secret | Personal Access token for 3rd party source control system for an Amplify App, used to create webhook and read-only deploy key. |
oauth | Secret | OAuth token for 3rd party source control system for an Amplify App, used to create webhook and read-only deploy key. |
repository
Type:
string
The repository for the application. Must use the HTTPS
protocol.
For example, https://github.com/aws/aws-cdk
.
accessToken?
Type:
Secret
(optional, default: do not use a token)
Personal Access token for 3rd party source control system for an Amplify App, used to create webhook and read-only deploy key.
Token is not stored.
Either accessToken
or oauthToken
must be specified if repository
is sepcified.
oauthToken?
Type:
Secret
(optional, default: do not use a token)
OAuth token for 3rd party source control system for an Amplify App, used to create webhook and read-only deploy key.
OAuth token is not stored.
Either accessToken
or oauthToken
must be specified if repository
is specified.