Skip to content

Get Blob

codecommit_get_blob R Documentation

Returns the base-64 encoded content of an individual blob in a repository

Description

Returns the base-64 encoded content of an individual blob in a repository.

Usage

codecommit_get_blob(repositoryName, blobId)

Arguments

repositoryName

[required] The name of the repository that contains the blob.

blobId

[required] The ID of the blob, which is its SHA-1 pointer.

Value

A list with the following syntax:

list(
  content = raw
)

Request syntax

svc$get_blob(
  repositoryName = "string",
  blobId = "string"
)