Finley Knowledge Base
  • What is Finley?
  • Guides
    • Implementing Finley
    • Getting Started with Finley
    • Executing a Funding Request
    • Monitoring Your Credit Facility
  • Core Capabilities
    • Digital Credit Agreement
    • Automated Borrowing Base Calculation
    • Draw Requests
    • Recycle Requests
    • Statements (Draws, Interest, Fees)
    • Monthly Servicer Reports
    • Borrowing Base Reporting
    • Receivables Dashboard
    • Borrowing Base Insights
    • Strats & Report Builder
    • Reports Repository
    • Manual Uploader
    • Deliverables
    • Calculation Terminologies
    • Event Log
    • Finley API
    • Settings
    • Data Integrations
      • AWS S3 Setup Guide
      • SFTP Setup Guide (Client-Hosted)
      • SFTP Setup Guide (Finley-Hosted)
      • Setting up Bank Data Integrations
  • Additional Features
    • Receivable Assignment
    • Custom Strats
    • SSO
    • Collateral Data Quality, Roll-Forward Analysis
    • Asset Verification
    • Forward Flow
Powered by GitBook
On this page
  • Overview
  • Step-by-step instructions
  • Uploading files after setup
  1. Core Capabilities
  2. Data Integrations

AWS S3 Setup Guide

Overview

Finley uses AWS S3 data transfer to take in customer asset tapes on a regular cadence. This guide walks you through our preferred data transfer setup.

Step-by-step instructions

The three steps to setting up an S3 transfer with Finley are:

  1. Give Finley your AWS account ID. Finley will create an S3 bucket with cross-account permissions to your account, and let you know the name of the bucket (referenced onwards as [cross-account-bucket-name]).

  2. Confirm that your AWS account has access. Once the bucket has been created, an admin user will be able to access the bucket via CLI (aws s3 ls s3://[cross-account-bucket-name] --profile [admin-aws-profile]).

  3. You are now able to give your AWS service access to this S3 bucket through an IAM role with appropriate bucket permissions. Example policy below:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Action": [
                "s3:PutObject"
            ],
            "Resource": [
                "arn:aws:s3:::[cross-account-bucket-name]",
                "arn:aws:s3:::[cross-account-bucket-name]/*"
            ],
            "Effect": "Allow"
        }
    ]
}

And that's it! Once configured, the Finley team will provide additional guidance on preferred CSV data formats, and you’ll be able to programmatically drop CSV files into the bucket that we would incorporate into the required reports for capital provider submission.

Uploading files after setup

PreviousData IntegrationsNextSFTP Setup Guide (Client-Hosted)

Last updated 2 years ago

Once the bucket is live, you will be able to upload files to it that Finley will now have access to. AWS has a suite of API and CLI tools to get this job done outlined .

here