Skip to main content

BlueprintInstanceExports

A mapping of export names as defined in the source blueprint to the export values created as a result of the deployment of the blueprint instance.

property name* ExportState
valueAnyValuerequired

The value of the exported field.

typestringrequired

The type of the exported field.

Possible values: [string, object, integer, float, array, boolean]

Example: string
descriptionstringnullable

A description of the exported field.

Example: The ARN of the lambda function
fieldstringrequired

The path of a field in a blueprint element that should be exported. This is used to retain information about the source of the export from within the blueprint.

Example: resources["my-resource"].spec.arn
BlueprintInstanceExports
{
"my-export": {
"value": "arn:aws:lambda:us-east-1:123456789012:function:my-lambda-function",
"type": "string",
"description": "The ARN of the lambda function",
"field": "resources[\"my-resource\"].spec.arn"
}
}