Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • Yandex SIEM
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Serverless Integrations
  • Comparing with other Yandex Cloud services
    • All guides
        • Overview
          • Models AI Studio
          • AI Studio agent
          • Vector Store
          • OCR
          • Speech recognition
          • Cloud Functions
          • Serverless Containers
          • Yandex Cloud Postbox
          • Tracker
          • HTTP
          • gRPC
          • Object Storage
          • Managed Service for YDB
          • Data Streams
          • Message Queue
          • Yandex Disk
          • Workflows
          • Telegram bot
          • Database Query
        • Configuring a retry policy for a workflow
        • Configuring an error transition rule
    • Viewing operations with service resources
  • Pricing policy
  • Terraform reference
  • Audit Trails events
  • Monitoring metrics
  • Public materials
  • Release notes
  1. Step-by-step guides
  2. Workflows
  3. Workflow step constructor
  4. Integration steps
  5. Object Storage

Interacting with Yandex Object Storage objects

Written by
Yandex Cloud
Updated at August 4, 2026
View in Markdown

Tip

There is an icon next to some fields in the Yandex AI Studio UI. These fields support templates for dynamic data retrieval from previous workflow steps. To avoid typing a template manually, click and enter {{ in the field.

Management console
  1. When creating a new workflow or editing an existing one, in the management console, under Create workflow / Edit workflow, select Constructor.

  2. From the Integration steps section on the left side of the screen, drag the Object Storage element to the relevant workflow location in the constructor window.

    You can drag and drop steps into areas marked by the dotted line in the workflow schema, such as Add a step, etc.

  3. In the workflow schema window, click the new Object Storage section to select it.

  4. At the right of the window, on the Settings tab.

    1. In the Step name field, enter a name for the workflow step.

    2. In the Bucket field, select the bucket containing the objects you will work with as part of your workflow.

    3. In the Object name field, specify the name of the object you are going to work with.

    4. In the Action field, select:

      • Add object to add a new object to the bucket.
      • Get object to get object content from the bucket.
    5. In the Content type field, select the content type of the target object:

      If you are adding an object to the bucket
      • BINARY: Object content will be decoded from Base64 format.
      • TEXT: Object content will be saved as UTF-8 encoded plain text. If the file has a different encoding, Workflows will return an error, or the workflow will run incorrectly.
      • JSON: Object text containing JSON will be saved as a JSON structure.
      If you are getting an object from the bucket
      • BINARY: Object content will be encoded in Base64 format.
      • JSON: Object content will be received as a JSON structure.
      • TEXT: Object content will be received as UTF-8 encoded plain text. If the file has a different encoding, Workflows will return an error, or the workflow will run incorrectly.
      • EXCEL: Object content will be converted into an array of pages, where each page is an array of string arrays. Supported formats: XLAM, XLSM, XLSX, XLTM, and XLTX.
      • CSV: Object content will be converted into an array of string arrays by dividing the strings based on the following separators: comma (,) and line break.
    6. If you are adding an object to the bucket, specify the content of the new object in the Object content field.

    7. Optionally, in the Timeout, ms field, set the maximum execution time for the current step.

    8. Optionally, to set a custom retry policy for a step, expand the Retry policy section and click Retry policy. In the form that appears:

      1. Optionally, in the Initial delay, ms field, set the initial value for a delay between step retries.

      2. Optionally, in the Backoff rate field, set the multiplication factor for delay before each step retry.

      3. Optionally, in the Maximum delay, ms field, set the value for a maximum delay between step retries.

      4. In the Errors field, select the errors for which the step will or will not be retried.

        For detailed information about possible errors, see this section.

      5. Optionally, in the Maximum number of retries field, set the maximum number of step retry attempts.

      6. In the Error selection mode field, select:

        • INCLUDE: Retry executing a step when errors specified in the Errors field occur.
        • EXCLUDE: To retry executing the step on any errors other than those specified in the Errors field.

      If you want to delete a retry policy you created for the step earlier, click and select Delete in the Retry policy row.

      If no custom retry policy is configured for a step, the retry policy set for the whole workflow will apply.

  5. Optionally, navigate to the Input tab and set a jq template to filter the workflow state fed into the step.

  6. Optionally, navigate to the Output tab and set a jq template to filter the step outputs added into the workflow state.

  7. Optionally, add an error transition rule for the step you are creating to handle errors you may get during this step.

Useful linksUseful links

  • YaWL specification
  • Creating a workflow using the constructor
  • Updating a workflow

Was the article helpful?

Previous
gRPC
Next
Managed Service for YDB
© 2026 Direct Cursus Technology L.L.C.