The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Paws::CodeCommit::CreateCommit - Arguments for method CreateCommit on Paws::CodeCommit

DESCRIPTION

This class represents the parameters used for calling the method CreateCommit on the AWS CodeCommit service. Use the attributes of this class as arguments to method CreateCommit.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateCommit.

SYNOPSIS

    my $codecommit = Paws->service('CodeCommit');
    my $CreateCommitOutput = $codecommit->CreateCommit(
      BranchName     => 'MyBranchName',
      RepositoryName => 'MyRepositoryName',
      AuthorName     => 'MyName',             # OPTIONAL
      CommitMessage  => 'MyMessage',          # OPTIONAL
      DeleteFiles    => [
        {
          FilePath => 'MyPath',

        },
        ...
      ],                                      # OPTIONAL
      Email            => 'MyEmail',          # OPTIONAL
      KeepEmptyFolders => 1,                  # OPTIONAL
      ParentCommitId   => 'MyCommitId',       # OPTIONAL
      PutFiles         => [
        {
          FilePath    => 'MyPath',
          FileContent => 'BlobFileContent',    # max: 6291456; OPTIONAL
          FileMode    =>
            'EXECUTABLE',    # values: EXECUTABLE, NORMAL, SYMLINK; OPTIONAL
          SourceFile => {
            FilePath => 'MyPath',
            IsMove   => 1,          # OPTIONAL
          },    # OPTIONAL
        },
        ...
      ],    # OPTIONAL
      SetFileModes => [
        {
          FileMode =>
            'EXECUTABLE',    # values: EXECUTABLE, NORMAL, SYMLINK; OPTIONAL
          FilePath => 'MyPath',

        },
        ...
      ],    # OPTIONAL
    );

    # Results:
    my $CommitId     = $CreateCommitOutput->CommitId;
    my $FilesAdded   = $CreateCommitOutput->FilesAdded;
    my $FilesDeleted = $CreateCommitOutput->FilesDeleted;
    my $FilesUpdated = $CreateCommitOutput->FilesUpdated;
    my $TreeId       = $CreateCommitOutput->TreeId;

    # Returns a L<Paws::CodeCommit::CreateCommitOutput> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/codecommit/CreateCommit

ATTRIBUTES

AuthorName => Str

The name of the author who created the commit. This information is used as both the author and committer for the commit.

REQUIRED BranchName => Str

The name of the branch where you create the commit.

CommitMessage => Str

The commit message you want to include in the commit. Commit messages are limited to 256 KB. If no message is specified, a default message is used.

DeleteFiles => ArrayRef[Paws::CodeCommit::DeleteFileEntry]

The files to delete in this commit. These files still exist in earlier commits.

Email => Str

The email address of the person who created the commit.

KeepEmptyFolders => Bool

If the commit contains deletions, whether to keep a folder or folder structure if the changes leave the folders empty. If true, a ..gitkeep file is created for empty folders. The default is false.

ParentCommitId => Str

The ID of the commit that is the parent of the commit you create. Not required if this is an empty repository.

PutFiles => ArrayRef[Paws::CodeCommit::PutFileEntry]

The files to add or update in this commit.

REQUIRED RepositoryName => Str

The name of the repository where you create the commit.

SetFileModes => ArrayRef[Paws::CodeCommit::SetFileModeEntry]

The file modes to update for files in this commit.

SEE ALSO

This class forms part of Paws, documenting arguments for method CreateCommit in Paws::CodeCommit

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues