<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Proc S3 to On Premise S3 storage. in Architecture</title>
    <link>https://communities.sas.com/t5/Architecture/Proc-S3-to-On-Premise-S3-storage/m-p/735798#M311</link>
    <description>&lt;P&gt;This feature was added to proc s3 in Viya 4, and is referred to as "custom regions".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To use a custom region, first you define the custom region by providing network connection information with REGION statement and then refer to it using the REGION= option of proc s3.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, this will create an S3 connection to BackBlaze B2, an S3-compatible storage system:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc s3;
region add host="s3.us-west-002.backblazeb2.com"
           name="us-west-002"
           sslrequired replace;
run;

proc s3 keyid="myb2keyid"
        secret="myb2secretaccesskey"
        region="us-west-002";
list "/myb2bucket";
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note that some S3 clones may not behave correctly, and proc S3 may or may not handle API implementation differences.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Doc for the region statement:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_010/proc/p04qps86kvhp0in12g3jy96hm97x.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/v_010/proc/p04qps86kvhp0in12g3jy96hm97x.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 20 Apr 2021 22:40:41 GMT</pubDate>
    <dc:creator>jeclev</dc:creator>
    <dc:date>2021-04-20T22:40:41Z</dc:date>
    <item>
      <title>Proc S3 to On Premise S3 storage.</title>
      <link>https://communities.sas.com/t5/Architecture/Proc-S3-to-On-Premise-S3-storage/m-p/729219#M307</link>
      <description>&lt;P&gt;Can I use Proc S3 or some other means to access On Premise S3 storage?&amp;nbsp; We have S3 storage in our own servers - and use a 'REST Endpoint' to access the data with an Access Key ID and Secret Key.&amp;nbsp; I was also trying to do something similar with filename - but haven't had much luck.&amp;nbsp; (I'm using SAS 9.4 M6, but also can access as SAS Viya (9.5 maybe?) if there is a solution over there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;filename _S3File URL 's3stuff.mysite.com/data';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Seems like the 'Region' option makes the proc S3 not able to configure the actual endpoint and force you only into AWS cloud servers?&amp;nbsp; Seems like mounting to the S3 storage might be an option, but I don't have admin access to either our on premise SAS servers or the S3 storage.S3, AWSS3, AWS&lt;/P&gt;</description>
      <pubDate>Thu, 25 Mar 2021 19:59:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Architecture/Proc-S3-to-On-Premise-S3-storage/m-p/729219#M307</guid>
      <dc:creator>cstegeman</dc:creator>
      <dc:date>2021-03-25T19:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: Proc S3 to On Premise S3 storage.</title>
      <link>https://communities.sas.com/t5/Architecture/Proc-S3-to-On-Premise-S3-storage/m-p/731114#M308</link>
      <description>&lt;P&gt;Moved to &lt;EM&gt;Architecture&lt;/EM&gt;, hoping you'll get an answer there.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Apr 2021 08:13:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Architecture/Proc-S3-to-On-Premise-S3-storage/m-p/731114#M308</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-04-03T08:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: Proc S3 to On Premise S3 storage.</title>
      <link>https://communities.sas.com/t5/Architecture/Proc-S3-to-On-Premise-S3-storage/m-p/735798#M311</link>
      <description>&lt;P&gt;This feature was added to proc s3 in Viya 4, and is referred to as "custom regions".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To use a custom region, first you define the custom region by providing network connection information with REGION statement and then refer to it using the REGION= option of proc s3.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, this will create an S3 connection to BackBlaze B2, an S3-compatible storage system:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc s3;
region add host="s3.us-west-002.backblazeb2.com"
           name="us-west-002"
           sslrequired replace;
run;

proc s3 keyid="myb2keyid"
        secret="myb2secretaccesskey"
        region="us-west-002";
list "/myb2bucket";
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note that some S3 clones may not behave correctly, and proc S3 may or may not handle API implementation differences.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Doc for the region statement:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_010/proc/p04qps86kvhp0in12g3jy96hm97x.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/v_010/proc/p04qps86kvhp0in12g3jy96hm97x.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 22:40:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Architecture/Proc-S3-to-On-Premise-S3-storage/m-p/735798#M311</guid>
      <dc:creator>jeclev</dc:creator>
      <dc:date>2021-04-20T22:40:41Z</dc:date>
    </item>
  </channel>
</rss>

