PutObject request while Cloud Adapter stores the object in Google Cloud Storage. When AWS is the destination for an application using Google Cloud or Azure APIs, start from that origin cloud’s catalog instead.
Start with the service catalog
Open the AWS Service Catalog and find the AWS service your application calls. Each row provides:- the exact Tensor9 Service name used by
tensor9 explainandtensor9 adapt svc run; - the service category;
- the environments with a directed mapping;
- whether the mapping adapts application API calls, infrastructure, or both.
Mapping direction matters.
aws::1.0.0::s3 to google::1.0.0::gcs describes an application using the S3 API with Google Cloud Storage as its backend. It says nothing about applications using the Google Cloud Storage API.A concrete S3 example
The canonical AWS-origin example uses these service names:What stays the same
For a supported operation, application code continues to use the AWS-facing interface:- AWS SDK request and response types;
- AWS CLI commands and service-specific endpoint settings;
- service identifiers such as bucket names, table names, and object keys as defined by the selected profile;
- AWS-shaped success and service-error responses;
- the retry and timeout configuration in the application’s AWS client.
AWS_ENDPOINT_URL_S3 or set the endpoint on one S3 client instance. Do not redirect every AWS client in the process unless the deployment intentionally serves each of those services.
What changes
Cloud Adapter owns the target-side execution path. It translates the supported request, uses the configured target identity, calls the native target API, and maps the result back to the AWS-facing response. The target service still determines native quotas, consistency, regional availability, encryption facilities, and operational limits. These differences are part of the service contract, not implementation details to ignore. For each operation your application depends on, verify:Authentication has two sides
The application authenticates to the AWS-shaped Cloud Adapter endpoint using the caller mode configured for the deployment. Separately, Cloud Adapter uses a target-cloud workload identity to call the backend. Redirecting an SDK endpoint changes the network destination; it does not grant either identity new permissions. Keep target credentials inside the adapter environment. Application code should not receive the Google Cloud, Azure, Scaleway, OCI, or Kubernetes credential used for native execution.Test before connecting the workload
Use one operation with a small, uniquely named resource and an independently observable target effect. Capture the origin request ID, origin-shaped response, target request ID, and native target state. Include an expected failure so you understand how authorization, missing resources, or invalid input appears to the AWS client. For a local process, start with Testing Your Adapters. For a route-specific walkthrough, choose an AWS quickstart. If a request does not behave as expected, use tensor9 explain and the diagnostic response headers before changing application code.Browse AWS services
Find canonical service names, target environments, and service-specific behavior.
Try S3 to Google Cloud Storage
Run a bounded object-storage request and verify both API response and target state.
Configure Cloud Adapter
Define the selected service mappings, identities, networking, and backend settings.
Debug a request
Separate endpoint, policy, adaptation, and target-service failures.