swf-core 1.0.0-alpha9

Serverless Workflow DSL models — data structures, serialization, and validation
Documentation
1
2
3
4
5
6
7
8
9
use crate::models::resource::*;
use serde::{Deserialize, Serialize};

/// Represents the definition of a workflow component catalog
#[derive(Debug, Default, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct CatalogDefinition {
    /// Gets/sets the endpoint that defines the root URL at which the catalog is located
    pub endpoint: OneOfEndpointDefinitionOrUri,
}