Enterprise Reporting
  • Introduction
  • Understanding reports with clarity (Definitions)
  • Optimizing key performance indicators (via the Groups tab)
    • Dashboard
    • Reporting section
      • Progress report
      • Adoption report
      • Engagement report
      • Content insights
        • XP
        • Courses
        • Projects
        • Tracks
      • Assessments
      • Certifications
      • Time in Learn
      • DataLab
      • Export
    • Skill Matrix
  • Integrating our data into your tools (via Data Connector 2.0)
    • Explore the data model
      • Fact tables
      • Dimension tables
      • Bridge tables
      • Metrics tables
    • Common use cases
    • Sample queries
    • Queries to recreate key reports in the Groups tab
      • Dashboard
        • Members who have earned XP
      • Reporting section
        • Progress report
        • Content insights
        • Assessments
        • Certification Insights
        • Time in Learn
    • Domain Gotchas
    • Getting started with Data Connector 2.0
      • Enable Data Connector 2.0
      • Your credentials
      • Storing your credentials
    • Using Data Connector 2.0
      • Integrating with your BI tools
        • Microsoft Power BI
        • Tableau
        • Looker
        • DataLab
      • Downloading your data
        • S3 Browser (Windows)
        • Cyberduck (Mac or Windows)
        • AWS CLI (Linux)
    • Changelog
    • Migrating from Data Connector 1.0
  • FAQ
  • Data Connector 1.0 - Documentation
    • [Data Connector 1.0] Explore Data Model
      • [Data Connector 1.0] Data Model
      • [Data Connector 1.0] Changelog
      • [Data Connector 1.0] Example queries
    • [Data Connector 1.0] Getting started
      • [Data Connector 1.0] Enabling the Data Connector
      • [Data Connector 1.0] Your Credentials
      • [Data Connector 1.0] Storing your Credentials
    • [Data Connector 1.0] Using the Data Connector
      • [Data Connector 1.0] Analyzing data
        • [Data Connector 1.0] DataLab
        • [Data Connector 1.0] Microsoft Power BI
        • [Data Connector 1.0] Tableau
      • [Data Connector 1.0] Downloading data
        • [Data Connector 1.0] S3 Browser (Windows)
        • [Data Connector 1.0] 3Hub (Mac)
        • [Data Connector 1.0] AWS CLI (Linux)
    • [Data Connector 1.0] Data Connector FAQ
      • [Data Connector 1.0] Deprecating dcdcpy and dcdcr
Powered by GitBook
On this page
  1. Data Connector 1.0 - Documentation
  2. [Data Connector 1.0] Using the Data Connector
  3. [Data Connector 1.0] Downloading data

[Data Connector 1.0] AWS CLI (Linux)

Previous[Data Connector 1.0] 3Hub (Mac)Next[Data Connector 1.0] Data Connector FAQ

Last updated 1 month ago

This guide describes how to access your data through the AWS CLI. Below you will see the steps we followed to access your data

Step 1: Install the Amazon AWS CLI using the instructions on this page:

Step 2: Once installed you need to initialize your AWS configuration by typing the following command:

aws configure

This command will ask you for your Access Key ID, Secret Access Key, and Default region which you can all retrieve from the Data Connector settings page on the Groups hub.

See our page for instructions how to retrieve these settings.

The Default output format option you can leave empty.

Step 3: Now you can use the CLI to retrieve a list of all files in your S3 bucket.

To list all files you can for example us the following command

aws s3 ls s3://your-bucket-name

Or use the following command to download a file to your local hard drive home directory

aws s3 cp s3://your-bucket-name/filename.csv ~/filename.csv

See the for documentation on all the S3 commands you can use

using AWS Command Line Interface
https://aws.amazon.com/cli/
Your Credentials
S3 CLI reference pages