Class BitBucketSourceCredentials

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.Resource
software.amazon.awscdk.services.codebuild.BitBucketSourceCredentials
All Implemented Interfaces:
IConstruct, IDependable, IResource, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:41.659Z") @Stability(Stable) public class BitBucketSourceCredentials extends Resource
The source credentials used when contacting the BitBucket API.

Note: CodeBuild only allows a single credential for BitBucket to be saved in a given AWS account in a given region - any attempt to add more than one will result in an error.

Example:

 BitBucketSourceCredentials.Builder.create(this, "CodeBuildBitBucketCreds")
         .username(SecretValue.secretsManager("my-bitbucket-creds", SecretsManagerSecretOptions.builder().jsonField("username").build()))
         .password(SecretValue.secretsManager("my-bitbucket-creds", SecretsManagerSecretOptions.builder().jsonField("password").build()))
         .build();
 
  • Constructor Details

    • BitBucketSourceCredentials

      protected BitBucketSourceCredentials(software.amazon.jsii.JsiiObjectRef objRef)
    • BitBucketSourceCredentials

      protected BitBucketSourceCredentials(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • BitBucketSourceCredentials

      @Stability(Stable) public BitBucketSourceCredentials(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull BitBucketSourceCredentialsProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.