Listing Thumbnail

    D8:Platform - Governed Data Orchestration for AI

     Info
    Sold by: D8TAOPS 
    Deployed on AWS
    D8:Platform is the governed data orchestration layer for regulated enterprises deploying AI at scale. Connect fragmented data sources across cloud and on-prem, enforce policy and lineage at every step, and deliver trusted, AI-ready data inside your existing AWS environment. No data migration. No infrastructure replacement. Production-ready in weeks.

    Overview

    Fragmented data is the primary barrier to enterprise AI. Most organizations have data spread across core systems, cloud storage, legacy applications, and third-party platforms. Building AI on that foundation without governance produces unreliable outputs, compliance exposure, and pipelines that cannot be audited or explained.

    D8:Platform solves this at the infrastructure layer. It connects to your existing data sources across AWS and on-prem systems without requiring migration or changes to your current architecture.

    Eight specialized agents handle the full data pipeline: D8:INGEST connects any source, D8:CAT auto-discovers and catalogs with full lineage, D8:CURATE validates and prepares data for AI, D8:SEC enforces access controls and policy at every step, D8:FLOW orchestrates scheduled and event-triggered workflows, D8:OBSERVE detects anomalies in real time, D8:STAGE delivers governed data products to downstream systems, and D8:VIEW surfaces dashboards and APIs. Each agent handles one job. Together they take raw enterprise data to governed, AI-ready output.

    D8:Platform runs natively inside your AWS environment. Your data never leaves your infrastructure. Security rules stay yours. The platform integrates with AWS services alongside Snowflake, Databricks, and legacy systems. No rip and replace. Everything is additive to existing infrastructure. Deployments go live in weeks, not quarters.

    For organizations requiring centralized AI agent lifecycle governance, audit trails, and cost attribution across deployed agents, D8:ACM is available separately on AWS Marketplace.

    Highlights

    • Eight specialized agents. One governed pipeline. D8:Platform connects fragmented data sources, enforces policy and lineage at every step, and delivers AI-ready output inside your AWS environment. No migration. No infrastructure changes. Production-ready in weeks.
    • Your data never leaves your environment. D8:Platform deploys inside your existing AWS infrastructure and integrates with Snowflake, Databricks, and legacy systems. Full lineage, policy enforcement, access controls, and audit documentation are built into every pipeline by default.
    • Built for regulated industries. Financial services, healthcare, energy, and government. Policy enforcement, real-time anomaly detection, and complete data lineage are operational from day one. Compliance teams retain full visibility and override authority throughout.

    Details

    Sold by

    Delivery method

    Supported services

    Delivery option
    D8 Portal

    Latest version

    Operating system
    Linux

    Deployed on AWS
    New

    Introducing multi-product solutions

    You can now purchase comprehensive solutions tailored to use cases and industries.

    Multi-product solutions

    Features and programs

    Financing for AWS Marketplace purchases

    AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
    Financing for AWS Marketplace purchases

    Pricing

    D8:Platform - Governed Data Orchestration for AI

     Info
    Pricing is based on the duration and terms of your contract with the vendor. This entitles you to a specified quantity of use for the contract duration. If you choose not to renew or replace your contract before it ends, access to these entitlements will expire.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.

    36-month contract (1)

     Info
    Dimension
    Description
    Cost/36 months
    Cost savings %
    D8:Platform Usage
    -
    $425,000.00
    21%

    Vendor refund policy

    All fees are non-cancellable and non-refundable except as required by law.

    How can we make this page better?

    Tell us how we can improve this page, or report an issue with this product.
    Tell us how we can improve this page, or report an issue with this product.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    D8 Portal

    Supported services: Learn more 
    • Amazon ECS
    Container image

    Containers are lightweight, portable execution environments that wrap server application software in a filesystem that includes everything it needs to run. Container applications run on supported container runtimes and orchestration services, such as Amazon Elastic Container Service (Amazon ECS) or Amazon Elastic Kubernetes Service (Amazon EKS). Both eliminate the need for you to install and operate your own container orchestration software by managing and scheduling containers on a scalable cluster of virtual machines.

    Version release notes

    Initial d8taops portal release that provides a single-pane-of-glass into the d8platform.

    Additional details

    Usage instructions

    D8TAOPS Portal Deployment Instructions

    Thank you for subscribing to this container product. Because the infrastructure template is restricted for privacy, you must use the instructions below to configure and deploy the web portal task manually inside your AWS environment using the AWS CLI.

    Step 1: Create a Local Template File

    Copy the exact JSON payload below and save it locally on your computer as a file named task-definition.json.

    { "containerDefinitions": [ { "name": "container-portal", "image": "REGISTRY_URL/IMAGE_NAME:TAG", "cpu": 0, "portMappings": [ { "containerPort": 8090, "hostPort": 8090, "protocol": "tcp" } ], "essential": true, "environment": [], "mountPoints": [], "volumesFrom": [], "logConfiguration": { "logDriver": "awslogs", "options": { "awslogs-group": "CW_LOG_GROUP_NAME", "awslogs-region": "AWS_REGION", "awslogs-stream-prefix": "ecs" }, "secretOptions": [] }, "systemControls": [] } ], "family": "PRODUCT_NAME-task", "executionRoleArn": "ECS_EXECUTION_ROLE_ARN", "networkMode": "awsvpc", "volumes": [], "placementConstraints": [], "runtimePlatform": { "cpuArchitecture": "X86_64", "operatingSystemFamily": "LINUX" }, "requiresCompatibilities": [ "FARGATE" ], "cpu": "1024", "memory": "3072" }

    Step 2: Replace Template Placeholders

    Open the task-definition.json file in a text editor and replace the following placeholder variables with your actual AWS values:

    • REGISTRY_URL/IMAGE_NAME:TAG: The Amazon ECR image path provided in your AWS Marketplace fulfillment dashboard after purchase.
    • CW_LOG_GROUP_NAME: An existing CloudWatch Log Group name where portal logs will be sent (e.g., /aws/ecs/portal-logs).
    • AWS_REGION: The target AWS region string where you are deploying (e.g., us-east-1).
    • PRODUCT_NAME: A custom name string for your task identity (e.g., my-web-portal).
    • ECS_EXECUTION_ROLE_ARN: The full IAM Role ARN that allows the ECS agent to pull images and push logs (must include standard AmazonECSTaskExecutionRolePolicy permissions).

    Step 3: Register the Task Definition

    Ensure your AWS CLI is authenticated to the correct target account. Execute the following terminal command to register the task:

    aws ecs register-task-definition --cli-input-json file://task-definition.json

    Step 4: Run the Task on AWS Fargate

    Launch your portal container as a standalone task or within an ECS service. Execute the following CLI command (replace the network subnet and security group IDs with your own VPC details):

    aws ecs run-task \ --cluster default \ --task-definition PRODUCT_NAME-task \ --launch-type FARGATE \ --network-configuration "awsvpcConfiguration={subnets=[subnet-xxxxxxxx],securityGroups=[sg-xxxxxxxx],assignPublicIp=ENABLED}"

    Support

    Vendor support

    D8TAOPS provides direct support for all D8:Platform deployments. Contact our team at info@d8taops.com  or 877.456.2001. Enterprise customers typically receive dedicated onboarding assistance and access to a named technical contact during the deployment period. Support terms, response commitments, and coverage details are defined at time of contract and may vary by engagement.

    AWS infrastructure support

    AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.

    Similar products

    Customer reviews

    Ratings and reviews

     Info
    0 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    0%
    0%
    0%
    0%
    0 reviews
    No customer reviews yet
    Be the first to review this product . We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.