Class CfnRepositoryProps.Builder

java.lang.Object
software.amazon.awscdk.services.codecommit.CfnRepositoryProps.Builder
All Implemented Interfaces:
software.amazon.jsii.Builder<CfnRepositoryProps>
Enclosing interface:
CfnRepositoryProps

@Stability(Stable) public static final class CfnRepositoryProps.Builder extends Object implements software.amazon.jsii.Builder<CfnRepositoryProps>
A builder for CfnRepositoryProps
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • repositoryName

      @Stability(Stable) public CfnRepositoryProps.Builder repositoryName(String repositoryName)
      Parameters:
      repositoryName - The name of the new repository to be created. This parameter is required.

      The repository name must be unique across the calling AWS account . Repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For more information about the limits on repository names, see Quotas in the AWS CodeCommit User Guide . The suffix .git is prohibited.

      Returns:
      this
    • code

      @Stability(Stable) public CfnRepositoryProps.Builder code(IResolvable code)
      Parameters:
      code - Information about code to be committed to a repository after it is created in an AWS CloudFormation stack. Information about code is only used in resource creation. Updates to a stack will not reflect changes made to code properties after initial resource creation.

      You can only use this property to add code when creating a repository with a AWS CloudFormation template at creation time. This property cannot be used for updating code to an existing repository.

      Returns:
      this
    • code

      @Stability(Stable) public CfnRepositoryProps.Builder code(CfnRepository.CodeProperty code)
      Parameters:
      code - Information about code to be committed to a repository after it is created in an AWS CloudFormation stack. Information about code is only used in resource creation. Updates to a stack will not reflect changes made to code properties after initial resource creation.

      You can only use this property to add code when creating a repository with a AWS CloudFormation template at creation time. This property cannot be used for updating code to an existing repository.

      Returns:
      this
    • kmsKeyId

      @Stability(Stable) public CfnRepositoryProps.Builder kmsKeyId(String kmsKeyId)
      Parameters:
      kmsKeyId - The ID of the AWS Key Management Service encryption key used to encrypt and decrypt the repository.

      The input can be the full ARN, the key ID, or the key alias. For more information, see Finding the key ID and key ARN .

      Returns:
      this
    • repositoryDescription

      @Stability(Stable) public CfnRepositoryProps.Builder repositoryDescription(String repositoryDescription)
      Parameters:
      repositoryDescription - A comment or description about the new repository.

      The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a webpage can expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a webpage.

      Returns:
      this
    • tags

      @Stability(Stable) public CfnRepositoryProps.Builder tags(List<? extends CfnTag> tags)
      Parameters:
      tags - One or more tag key-value pairs to use when tagging this repository.
      Returns:
      this
    • triggers

      @Stability(Stable) public CfnRepositoryProps.Builder triggers(IResolvable triggers)
      Parameters:
      triggers - The JSON block of configuration information for each trigger.
      Returns:
      this
    • triggers

      @Stability(Stable) public CfnRepositoryProps.Builder triggers(List<? extends Object> triggers)
      Parameters:
      triggers - The JSON block of configuration information for each trigger.
      Returns:
      this
    • build

      @Stability(Stable) public CfnRepositoryProps build()
      Builds the configured instance.
      Specified by:
      build in interface software.amazon.jsii.Builder<CfnRepositoryProps>
      Returns:
      a new instance of CfnRepositoryProps
      Throws:
      NullPointerException - if any required attribute was not provided