For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • About NVIDIA NeMo Relay
    • Overview
    • Architecture
    • Ecosystem
    • Concepts
    • Release Notes
  • Getting Started
    • Agent Runtime Primer
    • Prerequisites
    • Installation
    • Configuration / Setup
    • Quick Start
  • NVIDIA NeMo Relay CLI
    • About
    • Basic Usage
    • Claude Code
    • Codex
    • Cursor
    • Hermes Agent
  • Supported Integrations
    • About
    • OpenClaw Plugin Guide
    • LangChain Integration Guide
    • LangGraph Integration Guide
    • Deep Agents Integration Guide
  • Instrument Applications
    • About
    • Adding Scopes and Marks
    • Instrument a Tool Call
    • Instrument an LLM Call
    • Add Middleware
    • Code Examples
  • Observability Plugin
    • About
    • Configuration
    • Agent Trajectory Interchange Format (ATIF)
    • Agent Trajectory Observability Format (ATOF)
    • OpenTelemetry
    • OpenInference
  • Adaptive Plugin
    • About
    • Configuration
    • Adaptive Cache Governor (ACG)
    • Adaptive Hints
  • NeMo Guardrails Plugin
    • About
    • Configuration
  • Integrate into Frameworks
    • About
    • Adding Scopes
    • Wrap Tool Calls
    • Wrap LLM Calls
    • Handle Non-Serializable Data
    • Using Codecs
    • Provider Codecs
    • Provider Response Codecs
    • Code Examples
  • Build Plugins
    • About
    • Define a Plugin
    • Validate Plugin Configuration
    • Plugin Configuration Files
    • Register Plugin Behavior
    • Design Plugin Configuration
    • NeMo Guardrails Example Plugin
    • Code Examples
  • Contribute
    • About
    • Development Setup
    • Workflow and Reviews
    • Testing and Documentation
  • Reference
    • APIs
      • Python Library Reference
      • Node.js Library Reference
      • Rust Library Reference
        • nemo-relay
          • api
          • codec
          • config_editor
          • error
          • json
          • observability
            • atif
            • atof
            • openinference
            • otel
            • plugin_component
              • AtifSectionConfig
              • AtofSectionConfig
              • ComponentSpec
              • ObservabilityConfig
              • OtlpSectionConfig
              • S3StorageConfig
              • AtifStorageConfig
              • OBSERVABILITY_PLUGIN_KIND
              • deregister_observability_component
              • register_observability_component
          • plugin
          • plugins
          • stream
          • editor_config
        • nemo-relay-adaptive
        • nemo-relay-ffi
    • Performance
  • Resources
    • Support and FAQs
    • Glossary
    • Troubleshooting Guide
    • Community
    • Legal
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Your Privacy Choices | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright © 2026, NVIDIA Corporation.

LogoLogo
On this page
  • Variants
  • S3(S3StorageConfig)
  • Trait Implementations
  • impl Clone for AtifStorageConfig
  • clone
  • clone_from
  • impl Debug for AtifStorageConfig
  • fmt
  • impl<'de> Deserialize<'de> for AtifStorageConfig
  • deserialize
  • impl Serialize for AtifStorageConfig
  • serialize
ReferenceAPIsRust Library Referencenemo-relayobservabilityplugin_component

Enum Atif Storage Config

||View as Markdown|
Previous

Struct S3Storage Config

Next

Constant OBSERVABILITY_PLUGIN_KIND

Generated from cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi.

pub enum AtifStorageConfig {
    S3(S3StorageConfig),
}

Remote storage destination for ATIF trajectory files.

When AtifSectionConfig::storage is non-empty, the ATIF dispatcher uploads each completed trajectory to every configured backend instead of writing it to the local filesystem. The shape is tagged with a type discriminator so additional backends (for example, Azure Blob Storage) can be added without breaking existing configs.

Variants

S3(S3StorageConfig)

S3(S3StorageConfig)

S3-compatible object storage.

Non-secret connection settings (region, endpoint_url, allow_http) and the static access_key_id may be set directly. The secret credential fields (secret_access_key_var, session_token_var) must reference the name of an environment variable that holds the secret, so multiple S3 destinations can coexist in one config without writing secrets into checked-in files. Any field left unset falls back to the matching AWS_* environment variable (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN, AWS_REGION, AWS_ENDPOINT_URL, AWS_ALLOW_HTTP).

Trait Implementations

impl Clone for AtifStorageConfig

impl Clone for AtifStorageConfig

clone

fn clone(&self) -> AtifStorageConfig

clone_from

fn clone_from(&mut self, source: &Self)

impl Debug for AtifStorageConfig

impl Debug for AtifStorageConfig

fmt

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl<'de> Deserialize<'de> for AtifStorageConfig

impl<'de> Deserialize<'de> for AtifStorageConfig

deserialize

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,

impl Serialize for AtifStorageConfig

impl Serialize for AtifStorageConfig

serialize

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where
    __S: Serializer,