{"id":2626,"date":"2018-10-06T12:27:33","date_gmt":"2018-10-06T06:57:33","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=2626"},"modified":"2018-10-12T15:51:39","modified_gmt":"2018-10-12T10:21:39","slug":"using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/","title":{"rendered":"Using AWS Command Line Interface[AWS-CLI] for accessing S3 bucket."},"content":{"rendered":"<h3>Using AWS Command Line Interface[AWS-CLI] for accessing S3 bucket.<\/h3>\n<h4>DATE POSTED: 06-10-2018<\/h4>\n<p>This was\u00a0 simple manual solution and temporary way for\u00a0 automation of\u00a0 sending all your required\u00a0 files to a remote backup.Immediate ways\u00a0 to uploading and downloading the files to S3\u00a0 become very easy by using AWS -CLI. Thus,here are the step by step manual for accessing a AWS-resource of S3\u00a0 Bucket.<\/p>\n<h3>INSTALLATION:<\/h3>\n<p><strong>STEP 1 &#8211;<\/strong>\u00a0AWS CLI requires either Pyton 2.6.5+ or Python 3.3+ to be installed on the system. We can install Python with following command,<\/p>\n<p>For ubuntu and debian based environment:<\/p>\n<p><strong># sudo apt-get install python3\u00a0 \u00a0 <\/strong><\/p>\n<p>For centOS and RHEL\u00a0 based environment:<br \/>\n<strong># sudo yum install python<\/strong><\/p>\n<p>For fedora based environment:<\/p>\n<p><strong># dnf install python\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0<\/strong><\/p>\n<p><strong>STEP 2 &#8211;<\/strong>\u00a0We will using PIP to install the latest version of AWS CLI, though older version are available with default package managers but latest packages can only be installed using PIP. To install PIP on the system, execute the following command,<\/p>\n<p><strong># curl -O https:\/\/bootstrap.pypa.io\/get-pip.py<\/strong><\/p>\n<p>And\u00a0 then execute,<\/p>\n<p><strong>#python get-pip.py<\/strong><\/p>\n<p>Once the script has been executed successfully, we can than run the following command to confirm the installed PIP version,<\/p>\n<p><strong># pip \u2013version<\/strong><\/p>\n<h3>Installation of AWS CLI<\/h3>\n<p>The package manager to install AWS -CLI\u00a0 in ubuntu \/ Debian based systems.<\/p>\n<p><strong># sudo apt-get update awscli<\/strong><\/p>\n<p>The package manager to install AWS -CLI\u00a0 in centos \/ RHEL based systems.<\/p>\n<p><strong># sudo yum install awscli<\/strong><\/p>\n<p>But these are not the updated versions. For latest aws cli installation, run the following PIP command from the terminal,<\/p>\n<p><strong>#pip install awscli<\/strong><\/p>\n<p>To upgrade the aws cli to latest version,<br \/>\n<strong>#pip install awscli \u2013upgrade<\/strong><\/p>\n<h3>CONFIGURATION AND USAGE:<\/h3>\n<h3>\u00a0AWS- configuration<\/h3>\n<p>Configuring the aws with your accurate access key id and and security key id. Then select your default region name and output format as\u00a0 text \/Jason\u00a0 format.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">-sh-4.2# aws configure\r\n\r\nAWS Access Key ID [****************S4HA]: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\n\r\nAWS Secret Access Key [****************eEeI]:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\r\n\r\nDefault region name [us-east-2]:\u00a0\r\n\r\nDefault output format :<\/pre>\n<h4><strong>STEP 1:\u00a0<\/strong>Make Bucket using AWScli<\/h4>\n<p>Mb[make bucket]<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">\u00a0\u00a0\u00a0\u00a0 -sh-4.2# aws s3 mb s3:\/\/python-py2<\/pre>\n<p><strong>\u00a0Response<\/strong>: make_bucket: python-py2<\/p>\n<h4><strong>STEP 2:Moving\u00a0 a file to a bucket inside a folder using aws-cli<\/strong><\/h4>\n<p>Here the ,<\/p>\n<p><strong>Bucket name<\/strong>: program-py<\/p>\n<p><strong>Directory inside<\/strong> <strong>bucket <\/strong>:py<\/p>\n<p><strong>File inside a directory<\/strong>: tests.txt<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">-sh-4.2# aws s3 cp .\/tests.txt s3:\/\/program-py\/py\/<\/pre>\n<p><strong>Response:upload:<\/strong> .\/tests.txt to s3:\/\/program-py\/py\/tests.txt<\/p>\n<h4><strong>\u00a0STEP 3:<\/strong>Remove Bucket using AWScli: <\/h4>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">-sh-4.2# aws s3 rb s3:\/\/python-py-2<\/pre>\n<p><strong>Response:<\/strong>remove_bucket failed: s3:\/\/python-py-2 An error occurred (NoSuchBucket) when calling the DeleteBucket operation: The specified bucket does not exist.<\/p>\n<ul>\n<li>\n<h4><strong>Remove<\/strong> Bucket giving a accurate name of Bucket:<\/h4>\n<\/li>\n<\/ul>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">-sh-4.2# aws s3 rb s3:\/\/python-py2<\/pre>\n<p><strong>Response:<\/strong>remove_bucket: python-py2<\/p>\n<h4>STEP 4: listing the bucket of s3<\/h4>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">-sh-4.2# aws s3 ls<\/pre>\n<p>2018-05-02 07:09:27\u00a0 Backup 1<\/p>\n<p>2018-05-01 10:58:56\u00a0 \u00a0backup 2<\/p>\n<p>2018-10-03 07:35:29 program-py<\/p>\n<h4><strong>STEP 5: synchronization with bucket-s3<\/strong><\/h4>\n<p>Synchronizing (updating) local file system with the contents in the S3 bucket.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">aws s3 sync s3:\/\/program-py<\/pre>\n<p>The object commands include\u00a0a<strong>ws s3 cp,\u00a0aws s3 ls,\u00a0aws s3 mv,\u00a0aws s3 rm, and\u00a0sync.<\/strong>The\u00a0sync command synchronizes the contents of a bucket and a directory, or two buckets. Thus using sync for copying, moving\u00a0 and sync needed the special permission ,<\/p>\n<p>But\u00a0 ,the<strong> cp, mv,<\/strong> and\u00a0<strong> sync<\/strong> commands include a\u00a0 <strong>&#8211;grants<\/strong> option that can be used to grant permissions on the object to specified users or groups. You set the<strong> &#8211;grants<\/strong> option to a list of permissions using following syntax:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">--grants Permission=Grantee_Type=Grantee_ID\r\n         [Permission=Grantee_Type=Grantee_ID ...]<\/pre>\n<p>Permission \u2013 Specifies the granted permissions, and can be set to read, readacl, writeacl, or full.<br \/>\n\u2022 Grantee_Type \u2013 Specifies how the grantee is to be identified, and can be set to uri, emailaddress, or id.<br \/>\n\u2022 Grantee_ID \u2013 Specifies the grantee based on Grantee_Type.<br \/>\no uri \u2013 The group&#8217;s URI. For more information,<br \/>\no emailaddress \u2013 The account&#8217;s email address.<br \/>\no id \u2013 The account&#8217;s canonical ID.<\/p>\n<p>Accessing a s3 Bucket and managing the objects\u00a0 by performing uploading , downloading, synchronization becomes more rapid and easy by using AWS-CLI commands.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Using AWS Command Line Interface[AWS-CLI] for accessing S3 bucket. DATE POSTED: 06-10-2018 This was\u00a0 simple manual solution and temporary way for\u00a0 automation of\u00a0 sending all your required\u00a0 files to a remote backup.Immediate ways\u00a0 to uploading and downloading the files to S3\u00a0 become very easy by using AWS -CLI. Thus,here are&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Using AWS Command Line Interface[AWS-CLI] for accessing S3 bucket.<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[284,225,259,1],"tags":[426,434],"class_list":{"0":"post-2626","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-centos","7":"category-linux","8":"category-python","9":"category-uncategorized","10":"tag-aws-cli-commands-to-access-s3-bucket","11":"tag-aws-cli-for-s3-bucket","12":"h-entry","14":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Using AWS Command Line Interface[AWS-CLI] for accessing S3 bucket. DATE POSTED: 06-10-2018 This was\u00a0 simple manual solution and temporary way for\u00a0 automation of\u00a0 sending all your required\u00a0 files to a remote backup.Immediate ways\u00a0 to uploading and downloading the files to S3\u00a0 become very easy by using AWS -CLI. Thus,here are&hellip; Continue Reading Using AWS Command Line Interface[AWS-CLI] for accessing S3 bucket.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-06T06:57:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-10-12T10:21:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Using AWS Command Line Interface[AWS-CLI] for accessing S3 bucket.\",\"datePublished\":\"2018-10-06T06:57:33+00:00\",\"dateModified\":\"2018-10-12T10:21:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\\\/\"},\"wordCount\":603,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"aws-cli commands to access s3 bucket\",\"AWS-cli for s3 bucket\"],\"articleSection\":[\"Centos\",\"Linux\",\"Python\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2018-10-06T06:57:33+00:00\",\"dateModified\":\"2018-10-12T10:21:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using AWS Command Line Interface[AWS-CLI] for accessing S3 bucket.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Using AWS Command Line Interface[AWS-CLI] for accessing S3 bucket. DATE POSTED: 06-10-2018 This was\u00a0 simple manual solution and temporary way for\u00a0 automation of\u00a0 sending all your required\u00a0 files to a remote backup.Immediate ways\u00a0 to uploading and downloading the files to S3\u00a0 become very easy by using AWS -CLI. Thus,here are&hellip; Continue Reading Using AWS Command Line Interface[AWS-CLI] for accessing S3 bucket.","og_url":"https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2018-10-06T06:57:33+00:00","article_modified_time":"2018-10-12T10:21:39+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Using AWS Command Line Interface[AWS-CLI] for accessing S3 bucket.","datePublished":"2018-10-06T06:57:33+00:00","dateModified":"2018-10-12T10:21:39+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/"},"wordCount":603,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["aws-cli commands to access s3 bucket","AWS-cli for s3 bucket"],"articleSection":["Centos","Linux","Python"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/","url":"https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2018-10-06T06:57:33+00:00","dateModified":"2018-10-12T10:21:39+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/using-aws-command-line-interfaceaws-cli-for-accessing-s3-bucket\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Using AWS Command Line Interface[AWS-CLI] for accessing S3 bucket."}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-Gm","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2626","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=2626"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/2626\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=2626"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=2626"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=2626"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}