stx

Storage Transfer Service

MigrationGCP
General

General information about the service.

Description

Storage Transfer Service enables high-performance data transfers to Google Cloud Storage.

Service ID

storagetransfer.googleapis.com

Resource Pattern

transferJobs/{job}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

stx-{workload}-{environment}

Length

1-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

project

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_storage_transfer_job" "s3_to_gcs" {
2 description = "stx-${var.environment}"
3
4 transfer_spec {
5 aws_s3_data_source {
6 bucket_name = var.s3_bucket
7 aws_access_key {
8 access_key_id = var.aws_access_key
9 secret_access_key = var.aws_secret_key
10 }
11 }
12 gcs_data_sink {
13 bucket_name = var.gcs_bucket
14 }
15 }
16}
Utilities

Utilities to support app deployment or configuration.