SourceCredentialState constructor

const SourceCredentialState({
  1. Input<String?>? arn,
  2. Input<String?>? authType,
  3. Input<String?>? region,
  4. Input<String?>? serverType,
  5. Input<String?>? token,
  6. Input<String?>? userName,
})

Creates a new SourceCredentialState. arn The ARN of Source Credential. authType The type of authentication used to connect to a GitHub, GitHub Enterprise, or Bitbucket region Region where this resource will be managed. Defaults to the Region set in the provider configuration. serverType The source provider used for this project. token For a GitHub and GitHub Enterprise, this is the personal access token. For Bitbucket, this is the userName The Bitbucket username when the authType is BASIC_AUTH. This parameter is not valid for

Implementation

const SourceCredentialState({
  this.arn,
  this.authType,
  this.region,
  this.serverType,
  this.token,
  this.userName,
});