appflow
AppFlow
IntegrationAWS
General
General information about the service.
Chat
Powered by AITalk 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 Documentation
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.