Skip to main content

blobs

Creates, updates, deletes, gets or lists a blobs resource.

Overview

Nameblobs
TypeResource
Idaws.codecommit.blobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
contentstring (byte)The content of the blob, usually a file.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_blobselectregionReturns the base-64 encoded content of an individual blob in a repository.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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

SELECT
content
FROM aws.codecommit.blobs
WHERE region = '{{ region }}' -- required
;