Skip to main content

pipeline_blueprints

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

Overview

Namepipeline_blueprints
TypeResource
Idaws.osis.pipeline_blueprints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
blueprintobjectThe requested blueprint in YAML format.
formatstringThe format of the blueprint.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_pipeline_blueprintselectblueprint_name, regionformatRetrieves information about a specific blueprint for OpenSearch Ingestion. Blueprints are templates for the configuration needed for a CreatePipeline request. For more information, see Using blueprints to create a pipeline.
list_pipeline_blueprintsselectregionRetrieves a list of all available blueprints for Data Prepper. For more information, see Using blueprints to create a pipeline.

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
blueprint_namestringThe name of the blueprint to retrieve.
regionstringAWS region (default: us-east-1)
formatstringThe format format of the blueprint to retrieve.

SELECT examples

Retrieves information about a specific blueprint for OpenSearch Ingestion. Blueprints are templates for the configuration needed for a CreatePipeline request. For more information, see Using blueprints to create a pipeline.

SELECT
blueprint,
format
FROM aws.osis.pipeline_blueprints
WHERE blueprint_name = '{{ blueprint_name }}' -- required
AND region = '{{ region }}' -- required
AND format = '{{ format }}'
;