1. Registry
  2. Packages
  3. AWS Cloud Control
  4. API Docs
  5. codecommit
  6. Repository

We recommend new projects start with resources from the AWS provider.

Viewing docs for AWS Cloud Control v1.79.0
published on Monday, Sep 14, 2026 by Pulumi
aws-native logo aws-native logo

We recommend new projects start with resources from the AWS provider.

Viewing docs for AWS Cloud Control v1.79.0
published on Monday, Sep 14, 2026 by Pulumi

    Resource Type definition for AWS::CodeCommit::Repository

    Example Usage

    Example

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AwsNative = Pulumi.AwsNative;
    
    return await Deployment.RunAsync(() => 
    {
        var myRepository = new AwsNative.CodeCommit.Repository("myRepository", new()
        {
            RepositoryName = "MyRepositoryName",
        });
    
        var myRepositoryAssociation = new AwsNative.CodeGuruReviewer.RepositoryAssociation("myRepositoryAssociation", new()
        {
            Name = "MyRepositoryName",
            Type = AwsNative.CodeGuruReviewer.RepositoryAssociationType.CodeCommit,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/codecommit"
    	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/codegurureviewer"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := codecommit.NewRepository(ctx, "myRepository", &codecommit.RepositoryArgs{
    			RepositoryName: pulumi.String("MyRepositoryName"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = codegurureviewer.NewRepositoryAssociation(ctx, "myRepositoryAssociation", &codegurureviewer.RepositoryAssociationArgs{
    			Name: pulumi.String("MyRepositoryName"),
    			Type: codegurureviewer.RepositoryAssociationTypeCodeCommit,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as aws_native from "@pulumi/aws-native";
    
    const myRepository = new aws_native.codecommit.Repository("myRepository", {repositoryName: "MyRepositoryName"});
    const myRepositoryAssociation = new aws_native.codegurureviewer.RepositoryAssociation("myRepositoryAssociation", {
        name: "MyRepositoryName",
        type: aws_native.codegurureviewer.RepositoryAssociationType.CodeCommit,
    });
    
    import pulumi
    import pulumi_aws_native as aws_native
    
    my_repository = aws_native.codecommit.Repository("myRepository", repository_name="MyRepositoryName")
    my_repository_association = aws_native.codegurureviewer.RepositoryAssociation("myRepositoryAssociation",
        name="MyRepositoryName",
        type=aws_native.codegurureviewer.RepositoryAssociationType.CODE_COMMIT)
    

    Example coming soon!

    Example

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AwsNative = Pulumi.AwsNative;
    
    return await Deployment.RunAsync(() => 
    {
        var myRepository = new AwsNative.CodeCommit.Repository("myRepository", new()
        {
            RepositoryName = "MyRepositoryName",
        });
    
        var myRepositoryAssociation = new AwsNative.CodeGuruReviewer.RepositoryAssociation("myRepositoryAssociation", new()
        {
            Name = "MyRepositoryName",
            Type = AwsNative.CodeGuruReviewer.RepositoryAssociationType.CodeCommit,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/codecommit"
    	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/codegurureviewer"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := codecommit.NewRepository(ctx, "myRepository", &codecommit.RepositoryArgs{
    			RepositoryName: pulumi.String("MyRepositoryName"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = codegurureviewer.NewRepositoryAssociation(ctx, "myRepositoryAssociation", &codegurureviewer.RepositoryAssociationArgs{
    			Name: pulumi.String("MyRepositoryName"),
    			Type: codegurureviewer.RepositoryAssociationTypeCodeCommit,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as aws_native from "@pulumi/aws-native";
    
    const myRepository = new aws_native.codecommit.Repository("myRepository", {repositoryName: "MyRepositoryName"});
    const myRepositoryAssociation = new aws_native.codegurureviewer.RepositoryAssociation("myRepositoryAssociation", {
        name: "MyRepositoryName",
        type: aws_native.codegurureviewer.RepositoryAssociationType.CodeCommit,
    });
    
    import pulumi
    import pulumi_aws_native as aws_native
    
    my_repository = aws_native.codecommit.Repository("myRepository", repository_name="MyRepositoryName")
    my_repository_association = aws_native.codegurureviewer.RepositoryAssociation("myRepositoryAssociation",
        name="MyRepositoryName",
        type=aws_native.codegurureviewer.RepositoryAssociationType.CODE_COMMIT)
    

    Example coming soon!

    Create Repository Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Repository(name: string, args?: RepositoryArgs, opts?: CustomResourceOptions);
    @overload
    def Repository(resource_name: str,
                   args: Optional[RepositoryArgs] = None,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Repository(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   code: Optional[RepositoryCodeArgs] = None,
                   kms_key_id: Optional[str] = None,
                   repository_description: Optional[str] = None,
                   repository_name: Optional[str] = None,
                   tags: Optional[Sequence[_root_inputs.TagArgs]] = None,
                   triggers: Optional[Sequence[RepositoryTriggerArgs]] = None)
    func NewRepository(ctx *Context, name string, args *RepositoryArgs, opts ...ResourceOption) (*Repository, error)
    public Repository(string name, RepositoryArgs? args = null, CustomResourceOptions? opts = null)
    public Repository(String name, RepositoryArgs args)
    public Repository(String name, RepositoryArgs args, CustomResourceOptions options)
    
    type: aws-native:codecommit:Repository
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "aws-native_codecommit_repository" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args RepositoryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args RepositoryArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args RepositoryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RepositoryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RepositoryArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Repository Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Repository resource accepts the following input properties:

    Code Pulumi.AwsNative.CodeCommit.Inputs.RepositoryCode
    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.
    KmsKeyId string
    The ID of the AWS Key Management Service encryption key used to encrypt and decrypt the repository.
    RepositoryDescription string
    A comment or description about the new repository.
    RepositoryName string
    The name of the new repository to be created.
    Tags List<Pulumi.AwsNative.Inputs.Tag>
    One or more tag key-value pairs to use when tagging this repository.
    Triggers List<Pulumi.AwsNative.CodeCommit.Inputs.RepositoryTrigger>
    Information about a trigger for a repository.
    Code RepositoryCodeArgs
    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.
    KmsKeyId string
    The ID of the AWS Key Management Service encryption key used to encrypt and decrypt the repository.
    RepositoryDescription string
    A comment or description about the new repository.
    RepositoryName string
    The name of the new repository to be created.
    Tags TagArgs
    One or more tag key-value pairs to use when tagging this repository.
    Triggers []RepositoryTriggerArgs
    Information about a trigger for a repository.
    code object
    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.
    kms_key_id string
    The ID of the AWS Key Management Service encryption key used to encrypt and decrypt the repository.
    repository_description string
    A comment or description about the new repository.
    repository_name string
    The name of the new repository to be created.
    tags list(object)
    One or more tag key-value pairs to use when tagging this repository.
    triggers list(object)
    Information about a trigger for a repository.
    code RepositoryCode
    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.
    kmsKeyId String
    The ID of the AWS Key Management Service encryption key used to encrypt and decrypt the repository.
    repositoryDescription String
    A comment or description about the new repository.
    repositoryName String
    The name of the new repository to be created.
    tags List<Tag>
    One or more tag key-value pairs to use when tagging this repository.
    triggers List<RepositoryTrigger>
    Information about a trigger for a repository.
    code RepositoryCode
    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.
    kmsKeyId string
    The ID of the AWS Key Management Service encryption key used to encrypt and decrypt the repository.
    repositoryDescription string
    A comment or description about the new repository.
    repositoryName string
    The name of the new repository to be created.
    tags Tag[]
    One or more tag key-value pairs to use when tagging this repository.
    triggers RepositoryTrigger[]
    Information about a trigger for a repository.
    code RepositoryCodeArgs
    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.
    kms_key_id str
    The ID of the AWS Key Management Service encryption key used to encrypt and decrypt the repository.
    repository_description str
    A comment or description about the new repository.
    repository_name str
    The name of the new repository to be created.
    tags Sequence[TagArgs]
    One or more tag key-value pairs to use when tagging this repository.
    triggers Sequence[RepositoryTriggerArgs]
    Information about a trigger for a repository.
    code Property Map
    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.
    kmsKeyId String
    The ID of the AWS Key Management Service encryption key used to encrypt and decrypt the repository.
    repositoryDescription String
    A comment or description about the new repository.
    repositoryName String
    The name of the new repository to be created.
    tags List<Property Map>
    One or more tag key-value pairs to use when tagging this repository.
    triggers List<Property Map>
    Information about a trigger for a repository.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Repository resource produces the following output properties:

    Arn string
    The Amazon Resource Name (ARN) of the repository.
    CloneUrlHttp string
    The URL to use for cloning the repository over HTTPS.
    CloneUrlSsh string
    The URL to use for cloning the repository over SSH.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The repository's name.
    RepositoryId string
    The ID of the repository.
    Arn string
    The Amazon Resource Name (ARN) of the repository.
    CloneUrlHttp string
    The URL to use for cloning the repository over HTTPS.
    CloneUrlSsh string
    The URL to use for cloning the repository over SSH.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The repository's name.
    RepositoryId string
    The ID of the repository.
    arn string
    The Amazon Resource Name (ARN) of the repository.
    clone_url_http string
    The URL to use for cloning the repository over HTTPS.
    clone_url_ssh string
    The URL to use for cloning the repository over SSH.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The repository's name.
    repository_id string
    The ID of the repository.
    arn String
    The Amazon Resource Name (ARN) of the repository.
    cloneUrlHttp String
    The URL to use for cloning the repository over HTTPS.
    cloneUrlSsh String
    The URL to use for cloning the repository over SSH.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The repository's name.
    repositoryId String
    The ID of the repository.
    arn string
    The Amazon Resource Name (ARN) of the repository.
    cloneUrlHttp string
    The URL to use for cloning the repository over HTTPS.
    cloneUrlSsh string
    The URL to use for cloning the repository over SSH.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The repository's name.
    repositoryId string
    The ID of the repository.
    arn str
    The Amazon Resource Name (ARN) of the repository.
    clone_url_http str
    The URL to use for cloning the repository over HTTPS.
    clone_url_ssh str
    The URL to use for cloning the repository over SSH.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The repository's name.
    repository_id str
    The ID of the repository.
    arn String
    The Amazon Resource Name (ARN) of the repository.
    cloneUrlHttp String
    The URL to use for cloning the repository over HTTPS.
    cloneUrlSsh String
    The URL to use for cloning the repository over SSH.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The repository's name.
    repositoryId String
    The ID of the repository.

    Supporting Types

    RepositoryCode, RepositoryCodeArgs

    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.
    S3 Pulumi.AwsNative.CodeCommit.Inputs.RepositoryS3
    Information about the Amazon S3 bucket that contains a ZIP file of code to be committed to the repository. Changes to this property are ignored after initial resource creation.
    BranchName string
    Optional. Specifies a branch name to be used as the default branch when importing code into a repository on initial creation. If this property is not set, the name main will be used for the default branch for the repository. Changes to this property are ignored after initial resource creation. We recommend using this parameter to set the name to main to align with the default behavior of CodeCommit unless another name is needed.
    S3 RepositoryS3
    Information about the Amazon S3 bucket that contains a ZIP file of code to be committed to the repository. Changes to this property are ignored after initial resource creation.
    BranchName string
    Optional. Specifies a branch name to be used as the default branch when importing code into a repository on initial creation. If this property is not set, the name main will be used for the default branch for the repository. Changes to this property are ignored after initial resource creation. We recommend using this parameter to set the name to main to align with the default behavior of CodeCommit unless another name is needed.
    s3 object
    Information about the Amazon S3 bucket that contains a ZIP file of code to be committed to the repository. Changes to this property are ignored after initial resource creation.
    branch_name string
    Optional. Specifies a branch name to be used as the default branch when importing code into a repository on initial creation. If this property is not set, the name main will be used for the default branch for the repository. Changes to this property are ignored after initial resource creation. We recommend using this parameter to set the name to main to align with the default behavior of CodeCommit unless another name is needed.
    s3 RepositoryS3
    Information about the Amazon S3 bucket that contains a ZIP file of code to be committed to the repository. Changes to this property are ignored after initial resource creation.
    branchName String
    Optional. Specifies a branch name to be used as the default branch when importing code into a repository on initial creation. If this property is not set, the name main will be used for the default branch for the repository. Changes to this property are ignored after initial resource creation. We recommend using this parameter to set the name to main to align with the default behavior of CodeCommit unless another name is needed.
    s3 RepositoryS3
    Information about the Amazon S3 bucket that contains a ZIP file of code to be committed to the repository. Changes to this property are ignored after initial resource creation.
    branchName string
    Optional. Specifies a branch name to be used as the default branch when importing code into a repository on initial creation. If this property is not set, the name main will be used for the default branch for the repository. Changes to this property are ignored after initial resource creation. We recommend using this parameter to set the name to main to align with the default behavior of CodeCommit unless another name is needed.
    s3 RepositoryS3
    Information about the Amazon S3 bucket that contains a ZIP file of code to be committed to the repository. Changes to this property are ignored after initial resource creation.
    branch_name str
    Optional. Specifies a branch name to be used as the default branch when importing code into a repository on initial creation. If this property is not set, the name main will be used for the default branch for the repository. Changes to this property are ignored after initial resource creation. We recommend using this parameter to set the name to main to align with the default behavior of CodeCommit unless another name is needed.
    s3 Property Map
    Information about the Amazon S3 bucket that contains a ZIP file of code to be committed to the repository. Changes to this property are ignored after initial resource creation.
    branchName String
    Optional. Specifies a branch name to be used as the default branch when importing code into a repository on initial creation. If this property is not set, the name main will be used for the default branch for the repository. Changes to this property are ignored after initial resource creation. We recommend using this parameter to set the name to main to align with the default behavior of CodeCommit unless another name is needed.

    RepositoryS3, RepositoryS3Args

    Information about the Amazon S3 bucket that contains a ZIP file of code to be committed to the repository. Changes to this property are ignored after initial resource creation.
    Bucket string
    The name of the Amazon S3 bucket that contains the ZIP file with the content that will be committed to the new repository. This can be specified using the name of the bucket in the AWS account. Changes to this property are ignored after initial resource creation.
    Key string
    The key to use for accessing the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.
    ObjectVersion string
    The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.
    Bucket string
    The name of the Amazon S3 bucket that contains the ZIP file with the content that will be committed to the new repository. This can be specified using the name of the bucket in the AWS account. Changes to this property are ignored after initial resource creation.
    Key string
    The key to use for accessing the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.
    ObjectVersion string
    The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.
    bucket string
    The name of the Amazon S3 bucket that contains the ZIP file with the content that will be committed to the new repository. This can be specified using the name of the bucket in the AWS account. Changes to this property are ignored after initial resource creation.
    key string
    The key to use for accessing the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.
    object_version string
    The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.
    bucket String
    The name of the Amazon S3 bucket that contains the ZIP file with the content that will be committed to the new repository. This can be specified using the name of the bucket in the AWS account. Changes to this property are ignored after initial resource creation.
    key String
    The key to use for accessing the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.
    objectVersion String
    The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.
    bucket string
    The name of the Amazon S3 bucket that contains the ZIP file with the content that will be committed to the new repository. This can be specified using the name of the bucket in the AWS account. Changes to this property are ignored after initial resource creation.
    key string
    The key to use for accessing the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.
    objectVersion string
    The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.
    bucket str
    The name of the Amazon S3 bucket that contains the ZIP file with the content that will be committed to the new repository. This can be specified using the name of the bucket in the AWS account. Changes to this property are ignored after initial resource creation.
    key str
    The key to use for accessing the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.
    object_version str
    The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.
    bucket String
    The name of the Amazon S3 bucket that contains the ZIP file with the content that will be committed to the new repository. This can be specified using the name of the bucket in the AWS account. Changes to this property are ignored after initial resource creation.
    key String
    The key to use for accessing the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.
    objectVersion String
    The object version of the ZIP file, if versioning is enabled for the Amazon S3 bucket. Changes to this property are ignored after initial resource creation.

    RepositoryTrigger, RepositoryTriggerArgs

    Information about a trigger for a repository.
    DestinationArn string
    The ARN of the resource that is the target for a trigger (for example, the ARN of a topic in Amazon SNS).
    Events List<string>
    The repository events that cause the trigger to run actions in another service, such as sending a notification through Amazon SNS.
    Name string
    The name of the trigger.
    Branches List<string>
    The branches to be included in the trigger configuration. If you specify an empty array, the trigger applies to all branches.
    CustomData string
    Any custom data associated with the trigger to be included in the information sent to the target of the trigger.
    DestinationArn string
    The ARN of the resource that is the target for a trigger (for example, the ARN of a topic in Amazon SNS).
    Events []string
    The repository events that cause the trigger to run actions in another service, such as sending a notification through Amazon SNS.
    Name string
    The name of the trigger.
    Branches []string
    The branches to be included in the trigger configuration. If you specify an empty array, the trigger applies to all branches.
    CustomData string
    Any custom data associated with the trigger to be included in the information sent to the target of the trigger.
    destination_arn string
    The ARN of the resource that is the target for a trigger (for example, the ARN of a topic in Amazon SNS).
    events list(string)
    The repository events that cause the trigger to run actions in another service, such as sending a notification through Amazon SNS.
    name string
    The name of the trigger.
    branches list(string)
    The branches to be included in the trigger configuration. If you specify an empty array, the trigger applies to all branches.
    custom_data string
    Any custom data associated with the trigger to be included in the information sent to the target of the trigger.
    destinationArn String
    The ARN of the resource that is the target for a trigger (for example, the ARN of a topic in Amazon SNS).
    events List<String>
    The repository events that cause the trigger to run actions in another service, such as sending a notification through Amazon SNS.
    name String
    The name of the trigger.
    branches List<String>
    The branches to be included in the trigger configuration. If you specify an empty array, the trigger applies to all branches.
    customData String
    Any custom data associated with the trigger to be included in the information sent to the target of the trigger.
    destinationArn string
    The ARN of the resource that is the target for a trigger (for example, the ARN of a topic in Amazon SNS).
    events string[]
    The repository events that cause the trigger to run actions in another service, such as sending a notification through Amazon SNS.
    name string
    The name of the trigger.
    branches string[]
    The branches to be included in the trigger configuration. If you specify an empty array, the trigger applies to all branches.
    customData string
    Any custom data associated with the trigger to be included in the information sent to the target of the trigger.
    destination_arn str
    The ARN of the resource that is the target for a trigger (for example, the ARN of a topic in Amazon SNS).
    events Sequence[str]
    The repository events that cause the trigger to run actions in another service, such as sending a notification through Amazon SNS.
    name str
    The name of the trigger.
    branches Sequence[str]
    The branches to be included in the trigger configuration. If you specify an empty array, the trigger applies to all branches.
    custom_data str
    Any custom data associated with the trigger to be included in the information sent to the target of the trigger.
    destinationArn String
    The ARN of the resource that is the target for a trigger (for example, the ARN of a topic in Amazon SNS).
    events List<String>
    The repository events that cause the trigger to run actions in another service, such as sending a notification through Amazon SNS.
    name String
    The name of the trigger.
    branches List<String>
    The branches to be included in the trigger configuration. If you specify an empty array, the trigger applies to all branches.
    customData String
    Any custom data associated with the trigger to be included in the information sent to the target of the trigger.

    Tag, TagArgs

    A set of tags to apply to the resource.
    Key string
    The key name of the tag
    Value string
    The value of the tag
    Key string
    The key name of the tag
    Value string
    The value of the tag
    key string
    The key name of the tag
    value string
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag
    key string
    The key name of the tag
    value string
    The value of the tag
    key str
    The key name of the tag
    value str
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag

    Package Details

    Repository
    AWS Native pulumi/pulumi-aws-native
    License
    Apache-2.0
    aws-native logo aws-native logo

    We recommend new projects start with resources from the AWS provider.

    Viewing docs for AWS Cloud Control v1.79.0
    published on Monday, Sep 14, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial