aws.codecommit.get_blob
Example SQL Queries
SELECT * FROMaws.codecommit.get_blobWHERE"repository_name" = 'VALUE'AND "blob_id" = 'VALUE';Description
Returns the base-64 encoded content of an individual blob in a repository.
Table Definition
| Column Name | Column Data Type |
|---|---|
| blob_id Required Input Column The ID of the blob, which is its SHA-1 pointer. | VARCHAR |
| repository_name Required Input Column The name of the repository that contains the blob. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| content The content of the blob, usually a file. | BLOB |