appflow

AppFlow

IntegrationAWS
General

General information about the service.

Description

Amazon AppFlow automates data flows between SaaS apps and AWS services.

Service Namespace

AWS::AppFlow::Flow

ARN Pattern

arn:aws:appflow:{region}:{account}:flow/{flow-name}

References

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

appflow-

Length

1-256

Valid Characters

Letters, numbers, hyphens, underscores

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_appflow_flow" "main" {
2 name = "appflow-${var.environment}"
3 source_flow_config {
4 connector_type = "Salesforce"
5 source_connector_properties { salesforce { object = "Account" } }
6 }
7 destination_flow_config {
8 connector_type = "S3"
9 destination_connector_properties { s3 { bucket_name = var.bucket } }
10 }
11 trigger_config { trigger_type = "OnDemand" }
12 task { task_type = "Map_all" source_fields = ["*"] }
13}
Utilities

Utilities to support app deployment or configuration.