jenkins pipeline s3 file download

0 votes

I am trying to add this step in Jenkins to download from S3:

//download file from s3 withAWS(credentials:'credss') { s3Download(file:'test.json', bucket:'test', path:'/devops/test.json',force:true) }


I am getting the below ERROR:

java.lang.NoSuchMethodError: No such DSL method 'withAWS' found among steps

Any help will be appreciated!!

Apr 19, 2022 in AWS by Soham
• 9,710 points
780 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
0 votes

Please use the following lines of code:-

 //download file from s3 withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: 'credentails']]) { echo "copying file from s3" sh "aws s3 cp --quiet s3://bucketname/example.json exa​mple.json" }

I also downloaded the plugin AWS Steps. Hope this helps clear your doubt!

answered Apr 20, 2022 by Aditya
• 7,680 points

edited Mar 5

Related Questions In AWS

0 votes
1 answer

jenkins pipeline s3 file download

make sure the pipelinen AWS steps is ...READ MORE

answered Feb 24, 2022 in AWS by Korak
• 5,820 points
5,046 views
0 votes
1 answer
0 votes
1 answer

How to download the latest file in a S3 bucket using AWS CLI?

You can use the below command $ aws ...READ MORE

answered Sep 6, 2018 in AWS by Archana
• 4,170 points
20,134 views
0 votes
1 answer

How to download a file from S3 buckets using boto3?

Hi@akhtar, Boto3 supports upload_file() and download_file() APIs to ...READ MORE

answered Oct 8, 2020 in AWS by MD
• 95,460 points
8,389 views
+1 vote
2 answers

Does S3 support intra file movement from one account to the other?

Follow the instruction in the given AWS ...READ MORE

answered Oct 23, 2018 in AWS by abc
1,000 views
+15 votes
2 answers

Git management technique when there are multiple customers and need multiple customization?

Consider this - In 'extended' Git-Flow, (Git-Multi-Flow, ...READ MORE

answered Mar 27, 2018 in DevOps & Agile by DragonLord999
• 8,450 points
4,305 views
+2 votes
1 answer
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP