diff --git a/docs/docs/index.xml b/docs/docs/index.xml
index 7ea0f2ef155..4ffbf07e019 100644
--- a/docs/docs/index.xml
+++ b/docs/docs/index.xml
@@ -265,7 +265,7 @@ in the <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/aws"&
used to convert a <code>string</code> to a <code>*string</code> type for input parameters that require a pointer to a string. Inversely
<a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/aws#ToString">aws.ToString</a> can be used to transform a <code>*string</code> to a <code>string</code> while providing
protection from dereferencing a nil pointer. The <code>To<Type></code> functions are helpful when handling service responses.</p>
-<p>Let’s look at an example of how we can use a Amazon S3 client to call the <code>GetObject</code> API, and construct
+<p>Let’s look at an example of how we can use an Amazon S3 client to call the <code>GetObject</code> API, and construct
our input using the <code>types</code> package, and <code>aws.<Type></code> helpers.</p>
<div class="highlight"><pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-go" data-lang="go"><span style="display:flex;"><span><span style="color:#204a87;font-weight:bold">import</span> <span style="color:#4e9a06">"context"</span>
</span></span><span style="display:flex;"><span><span style="color:#204a87;font-weight:bold">import</span> <span style="color:#4e9a06">"github.com/aws/aws-sdk-go-v2/config"</span>
@@ -1390,7 +1390,7 @@ for environment (EC2)</strong>, earlier in this topic.)</p>
<p>The <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/feature/rds/auth">auth</a> package provides utilities for generating authentication tokens for
connecting to Amazon RDS MySQL and PostgreSQL database instances. Using the <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/feature/rds/auth#BuildAuthToken">BuildAuthToken</a> method, you generate a database authorization token by providing the
database endpoint, AWS Region, username, and a <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/aws#CredentialsProvider">aws.CredentialProvider</a>
-implantation that returns IAM credentials with permission connect to the database using IAM
+implementation that returns IAM credentials with permission to connect to the database using IAM
database authentication. To learn more about configuring Amazon RDS with IAM
authentication see the following Amazon RDS Developer Guide resources:</p>
<ul>
@@ -2022,12 +2022,12 @@ in the Amazon EC2 User Guide.</p>
<p>There’s no instance metadata category that returns only the Region of an
instance. Instead, use the included <code>Region</code> method to easily return
an instance’s Region.</p>
-<div class="highlight"><pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-go" data-lang="go"><span style="display:flex;"><span><span style="color:#000">region</span><span style="color:#000;font-weight:bold">,</span> <span style="color:#000">err</span> <span style="color:#ce5c00;font-weight:bold">:=</span> <span style="color:#000">client</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">GetRegion</span><span style="color:#000;font-weight:bold">(</span><span style="color:#000">context</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">TODO</span><span style="color:#000;font-weight:bold">(),</span> <span style="color:#ce5c00;font-weight:bold">&</span><span style="color:#000">imds</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">GetRegionInput</span><span style="color:#000;font-weight:bold">{})</span>
+<div class="highlight"><pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-go" data-lang="go"><span style="display:flex;"><span><span style="color:#000">response</span><span style="color:#000;font-weight:bold">,</span> <span style="color:#000">err</span> <span style="color:#ce5c00;font-weight:bold">:=</span> <span style="color:#000">client</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">GetRegion</span><span style="color:#000;font-weight:bold">(</span><span style="color:#000">context</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">TODO</span><span style="color:#000;font-weight:bold">(),</span> <span style="color:#ce5c00;font-weight:bold">&</span><span style="color:#000">imds</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">GetRegionInput</span><span style="color:#000;font-weight:bold">{})</span>
</span></span><span style="display:flex;"><span><span style="color:#204a87;font-weight:bold">if</span> <span style="color:#000">err</span> <span style="color:#ce5c00;font-weight:bold">!=</span> <span style="color:#204a87;font-weight:bold">nil</span> <span style="color:#000;font-weight:bold">{</span>
</span></span><span style="display:flex;"><span> <span style="color:#000">log</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">Printf</span><span style="color:#000;font-weight:bold">(</span><span style="color:#4e9a06">"Unable to retrieve the region from the EC2 instance %v\n"</span><span style="color:#000;font-weight:bold">,</span> <span style="color:#000">err</span><span style="color:#000;font-weight:bold">)</span>
</span></span><span style="display:flex;"><span><span style="color:#000;font-weight:bold">}</span>
</span></span><span style="display:flex;"><span>
-</span></span><span style="display:flex;"><span><span style="color:#000">fmt</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">Printf</span><span style="color:#000;font-weight:bold">(</span><span style="color:#4e9a06">"region: %v\n"</span><span style="color:#000;font-weight:bold">,</span> <span style="color:#000">region</span><span style="color:#000;font-weight:bold">)</span>
+</span></span><span style="display:flex;"><span><span style="color:#000">fmt</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">Printf</span><span style="color:#000;font-weight:bold">(</span><span style="color:#4e9a06">"region: %v\n"</span><span style="color:#000;font-weight:bold">,</span> <span style="color:#000">response</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">Region</span><span style="color:#000;font-weight:bold">)</span>
</span></span></code></pre></div><p>For more information about the EC2 metadata utility, see the <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/feature/ec2/imds">feature/ec2/imds</a> package in the
AWS SDK for Go V2 API Reference.</p>
@@ -2412,7 +2412,7 @@ client’s configured Region.</p>
<p>For API operations like <code>PutObject</code> and <code>UploadPart</code>, the Amazon S3 client expects the value of the <code>Body</code> input parameter to implement the <a href="https://pkg.go.dev/io#Seeker">io.Seeker</a> interface by default. The <code>io.Seeker</code> interface is used by the client to determine the length of the value to upload, and to compute payload hash for the <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html">request signature</a>. If the <code>Body</code> input parameter value does not implement <code>io.Seeker</code>, your application will receive an error.</p>
<pre tabindex="0"><code>operation error S3: PutObject, failed to compute payload hash: failed to seek
body to start, request stream is not seekable
-</code></pre><p>You can change this behavior by modifying the operation method’s <a href="https://aws.github.io/aws-sdk-go-v2/docs/middleware/">Middleware</a> using functional options. The <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/service/s3#WithAPIOptions">WithAPIOptions</a> helper returns a functional option for zero or more middleware mutators. To disable the client computing the payload hash and use <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-header-based-auth.html">Unsigned Payload</a> request signature add <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/aws/signer/v4#RemoveComputePayloadSHA256Middleware">v4.SwapComputePayloadSHA256ForUnsignedPayloadMiddleware</a>.</p>
+</code></pre><p>You can change this behavior by modifying the operation method’s <a href="https://aws.github.io/aws-sdk-go-v2/docs/middleware/">Middleware</a> using functional options. The <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/service/s3#WithAPIOptions">WithAPIOptions</a> helper returns a functional option for zero or more middleware mutators. To disable the client computing the payload hash and use <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-header-based-auth.html">Unsigned Payload</a> request signature add <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/aws/signer/v4#SwapComputePayloadSHA256ForUnsignedPayloadMiddleware">v4.SwapComputePayloadSHA256ForUnsignedPayloadMiddleware</a>.</p>
<div class="highlight"><pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-go" data-lang="go"><span style="display:flex;"><span><span style="color:#000">resp</span><span style="color:#000;font-weight:bold">,</span> <span style="color:#000">err</span> <span style="color:#ce5c00;font-weight:bold">:=</span> <span style="color:#000">client</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">PutObject</span><span style="color:#000;font-weight:bold">(</span><span style="color:#000">context</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">TODO</span><span style="color:#000;font-weight:bold">(),</span> <span style="color:#ce5c00;font-weight:bold">&</span><span style="color:#000">s3</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">PutObjectInput</span><span style="color:#000;font-weight:bold">{</span>
</span></span><span style="display:flex;"><span> <span style="color:#000">Bucket</span><span style="color:#000;font-weight:bold">:</span> <span style="color:#ce5c00;font-weight:bold">&</span><span style="color:#000">bucketName</span><span style="color:#000;font-weight:bold">,</span>
</span></span><span style="display:flex;"><span> <span style="color:#000">Key</span><span style="color:#000;font-weight:bold">:</span> <span style="color:#ce5c00;font-weight:bold">&</span><span style="color:#000">objectName</span><span style="color:#000;font-weight:bold">,</span>
diff --git a/docs/docs/making-requests/index.html b/docs/docs/making-requests/index.html
index 2d5a1750f8b..7c31d866da5 100644
--- a/docs/docs/making-requests/index.html
+++ b/docs/docs/making-requests/index.html
@@ -3,7 +3,7 @@
@@ -105,7 +104,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -127,7 +126,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -420,24 +419,28 @@
-
© 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+
© 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/migrating/index.html b/docs/docs/migrating/index.html
index 28666c8296c..86581bd9faf 100644
--- a/docs/docs/migrating/index.html
+++ b/docs/docs/migrating/index.html
@@ -3,7 +3,7 @@
-
+
@@ -25,7 +25,6 @@
-
@@ -101,7 +100,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -123,7 +122,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -416,39 +415,43 @@
@@ -1341,7 +1344,7 @@ Amazon CloudFront Signing Utilities
- © 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+ © 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/sdk-utilities/cloudfront/index.html b/docs/docs/sdk-utilities/cloudfront/index.html
index 6c3af563120..dc34cf0f7bb 100644
--- a/docs/docs/sdk-utilities/cloudfront/index.html
+++ b/docs/docs/sdk-utilities/cloudfront/index.html
@@ -3,7 +3,7 @@
-
+
@@ -26,7 +26,6 @@
-
@@ -105,7 +104,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -127,7 +126,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -557,7 +556,7 @@
Amazon CloudFront URL Signer
-
© 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+
© 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/sdk-utilities/ec2-imds/index.html b/docs/docs/sdk-utilities/ec2-imds/index.html
index 94dd17bab6e..a83831733c3 100644
--- a/docs/docs/sdk-utilities/ec2-imds/index.html
+++ b/docs/docs/sdk-utilities/ec2-imds/index.html
@@ -3,7 +3,7 @@
-
+
@@ -25,11 +25,10 @@
-
-
+
-
+
@@ -105,7 +104,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -127,7 +126,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -418,6 +417,20 @@
+
+
@@ -520,19 +533,19 @@
Retrieving an Instance’s RegionThere’s no instance metadata category that returns only the Region of an
instance. Instead, use the included Region
method to easily return
an instance’s Region.
-region , err := client . GetRegion ( context . TODO (), & imds . GetRegionInput {})
+response , err := client . GetRegion ( context . TODO (), & imds . GetRegionInput {})
if err != nil {
log . Printf ( "Unable to retrieve the region from the EC2 instance %v\n" , err )
}
- fmt . Printf ( "region: %v\n" , region )
+fmt . Printf ( "region: %v\n" , response . Region )
For more information about the EC2 metadata utility, see the feature/ec2/imds package in the
AWS SDK for Go V2 API Reference.
@@ -580,7 +593,7 @@ Retrieving an Instance’s Region
- © 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+ © 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/sdk-utilities/index.html b/docs/docs/sdk-utilities/index.html
index fa7fd3e62e8..a0880b8c0b8 100644
--- a/docs/docs/sdk-utilities/index.html
+++ b/docs/docs/sdk-utilities/index.html
@@ -3,7 +3,7 @@
-
+
@@ -25,7 +25,6 @@
-
@@ -101,7 +100,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -123,7 +122,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -570,7 +569,7 @@
-
© 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+
© 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/sdk-utilities/index.xml b/docs/docs/sdk-utilities/index.xml
index 73e141ec533..a1d8c718835 100644
--- a/docs/docs/sdk-utilities/index.xml
+++ b/docs/docs/sdk-utilities/index.xml
@@ -27,7 +27,7 @@
<p>The <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/feature/rds/auth">auth</a> package provides utilities for generating authentication tokens for
connecting to Amazon RDS MySQL and PostgreSQL database instances. Using the <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/feature/rds/auth#BuildAuthToken">BuildAuthToken</a> method, you generate a database authorization token by providing the
database endpoint, AWS Region, username, and a <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/aws#CredentialsProvider">aws.CredentialProvider</a>
-implantation that returns IAM credentials with permission connect to the database using IAM
+implementation that returns IAM credentials with permission to connect to the database using IAM
database authentication. To learn more about configuring Amazon RDS with IAM
authentication see the following Amazon RDS Developer Guide resources:</p>
<ul>
@@ -155,12 +155,12 @@ in the Amazon EC2 User Guide.</p>
<p>There’s no instance metadata category that returns only the Region of an
instance. Instead, use the included <code>Region</code> method to easily return
an instance’s Region.</p>
-<div class="highlight"><pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-go" data-lang="go"><span style="display:flex;"><span><span style="color:#000">region</span><span style="color:#000;font-weight:bold">,</span> <span style="color:#000">err</span> <span style="color:#ce5c00;font-weight:bold">:=</span> <span style="color:#000">client</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">GetRegion</span><span style="color:#000;font-weight:bold">(</span><span style="color:#000">context</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">TODO</span><span style="color:#000;font-weight:bold">(),</span> <span style="color:#ce5c00;font-weight:bold">&</span><span style="color:#000">imds</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">GetRegionInput</span><span style="color:#000;font-weight:bold">{})</span>
+<div class="highlight"><pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-go" data-lang="go"><span style="display:flex;"><span><span style="color:#000">response</span><span style="color:#000;font-weight:bold">,</span> <span style="color:#000">err</span> <span style="color:#ce5c00;font-weight:bold">:=</span> <span style="color:#000">client</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">GetRegion</span><span style="color:#000;font-weight:bold">(</span><span style="color:#000">context</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">TODO</span><span style="color:#000;font-weight:bold">(),</span> <span style="color:#ce5c00;font-weight:bold">&</span><span style="color:#000">imds</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">GetRegionInput</span><span style="color:#000;font-weight:bold">{})</span>
</span></span><span style="display:flex;"><span><span style="color:#204a87;font-weight:bold">if</span> <span style="color:#000">err</span> <span style="color:#ce5c00;font-weight:bold">!=</span> <span style="color:#204a87;font-weight:bold">nil</span> <span style="color:#000;font-weight:bold">{</span>
</span></span><span style="display:flex;"><span> <span style="color:#000">log</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">Printf</span><span style="color:#000;font-weight:bold">(</span><span style="color:#4e9a06">"Unable to retrieve the region from the EC2 instance %v\n"</span><span style="color:#000;font-weight:bold">,</span> <span style="color:#000">err</span><span style="color:#000;font-weight:bold">)</span>
</span></span><span style="display:flex;"><span><span style="color:#000;font-weight:bold">}</span>
</span></span><span style="display:flex;"><span>
-</span></span><span style="display:flex;"><span><span style="color:#000">fmt</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">Printf</span><span style="color:#000;font-weight:bold">(</span><span style="color:#4e9a06">"region: %v\n"</span><span style="color:#000;font-weight:bold">,</span> <span style="color:#000">region</span><span style="color:#000;font-weight:bold">)</span>
+</span></span><span style="display:flex;"><span><span style="color:#000">fmt</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">Printf</span><span style="color:#000;font-weight:bold">(</span><span style="color:#4e9a06">"region: %v\n"</span><span style="color:#000;font-weight:bold">,</span> <span style="color:#000">response</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">Region</span><span style="color:#000;font-weight:bold">)</span>
</span></span></code></pre></div><p>For more information about the EC2 metadata utility, see the <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/feature/ec2/imds">feature/ec2/imds</a> package in the
AWS SDK for Go V2 API Reference.</p>
@@ -545,7 +545,7 @@ client’s configured Region.</p>
<p>For API operations like <code>PutObject</code> and <code>UploadPart</code>, the Amazon S3 client expects the value of the <code>Body</code> input parameter to implement the <a href="https://pkg.go.dev/io#Seeker">io.Seeker</a> interface by default. The <code>io.Seeker</code> interface is used by the client to determine the length of the value to upload, and to compute payload hash for the <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html">request signature</a>. If the <code>Body</code> input parameter value does not implement <code>io.Seeker</code>, your application will receive an error.</p>
<pre tabindex="0"><code>operation error S3: PutObject, failed to compute payload hash: failed to seek
body to start, request stream is not seekable
-</code></pre><p>You can change this behavior by modifying the operation method’s <a href="https://aws.github.io/aws-sdk-go-v2/docs/middleware/">Middleware</a> using functional options. The <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/service/s3#WithAPIOptions">WithAPIOptions</a> helper returns a functional option for zero or more middleware mutators. To disable the client computing the payload hash and use <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-header-based-auth.html">Unsigned Payload</a> request signature add <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/aws/signer/v4#RemoveComputePayloadSHA256Middleware">v4.SwapComputePayloadSHA256ForUnsignedPayloadMiddleware</a>.</p>
+</code></pre><p>You can change this behavior by modifying the operation method’s <a href="https://aws.github.io/aws-sdk-go-v2/docs/middleware/">Middleware</a> using functional options. The <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/service/s3#WithAPIOptions">WithAPIOptions</a> helper returns a functional option for zero or more middleware mutators. To disable the client computing the payload hash and use <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-header-based-auth.html">Unsigned Payload</a> request signature add <a href="https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/aws/signer/v4#SwapComputePayloadSHA256ForUnsignedPayloadMiddleware">v4.SwapComputePayloadSHA256ForUnsignedPayloadMiddleware</a>.</p>
<div class="highlight"><pre tabindex="0" style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-go" data-lang="go"><span style="display:flex;"><span><span style="color:#000">resp</span><span style="color:#000;font-weight:bold">,</span> <span style="color:#000">err</span> <span style="color:#ce5c00;font-weight:bold">:=</span> <span style="color:#000">client</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">PutObject</span><span style="color:#000;font-weight:bold">(</span><span style="color:#000">context</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">TODO</span><span style="color:#000;font-weight:bold">(),</span> <span style="color:#ce5c00;font-weight:bold">&</span><span style="color:#000">s3</span><span style="color:#000;font-weight:bold">.</span><span style="color:#000">PutObjectInput</span><span style="color:#000;font-weight:bold">{</span>
</span></span><span style="display:flex;"><span> <span style="color:#000">Bucket</span><span style="color:#000;font-weight:bold">:</span> <span style="color:#ce5c00;font-weight:bold">&</span><span style="color:#000">bucketName</span><span style="color:#000;font-weight:bold">,</span>
</span></span><span style="display:flex;"><span> <span style="color:#000">Key</span><span style="color:#000;font-weight:bold">:</span> <span style="color:#ce5c00;font-weight:bold">&</span><span style="color:#000">objectName</span><span style="color:#000;font-weight:bold">,</span>
diff --git a/docs/docs/sdk-utilities/rds/index.html b/docs/docs/sdk-utilities/rds/index.html
index 66ff71c6196..a502c2159f6 100644
--- a/docs/docs/sdk-utilities/rds/index.html
+++ b/docs/docs/sdk-utilities/rds/index.html
@@ -3,7 +3,7 @@
-
+
@@ -25,12 +25,11 @@
-
-
+
-
-
+
+
@@ -105,7 +104,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -127,7 +126,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -481,7 +480,7 @@
IAM Authentication
The auth package provides utilities for generating authentication tokens for
connecting to Amazon RDS MySQL and PostgreSQL database instances. Using the BuildAuthToken method, you generate a database authorization token by providing the
database endpoint, AWS Region, username, and a aws.CredentialProvider
-implantation that returns IAM credentials with permission connect to the database using IAM
+implementation that returns IAM credentials with permission to connect to the database using IAM
database authentication. To learn more about configuring Amazon RDS with IAM
authentication see the following Amazon RDS Developer Guide resources:
@@ -516,7 +515,7 @@ IAM Authentication
@@ -564,7 +563,7 @@ IAM Authentication
-
© 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+
© 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/sdk-utilities/s3/index.html b/docs/docs/sdk-utilities/s3/index.html
index 9e21e5317dc..414f28618a4 100644
--- a/docs/docs/sdk-utilities/s3/index.html
+++ b/docs/docs/sdk-utilities/s3/index.html
@@ -3,7 +3,7 @@
-
+
@@ -28,12 +28,11 @@
-
-
+
-
+
@@ -110,7 +109,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -132,7 +131,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -425,22 +424,27 @@
@@ -872,7 +876,7 @@
For API operations like PutObject
and UploadPart
, the Amazon S3 client expects the value of the Body
input parameter to implement the io.Seeker interface by default. The io.Seeker
interface is used by the client to determine the length of the value to upload, and to compute payload hash for the request signature . If the Body
input parameter value does not implement io.Seeker
, your application will receive an error.
operation error S3: PutObject, failed to compute payload hash: failed to seek
body to start, request stream is not seekable
-
You can change this behavior by modifying the operation method’s Middleware using functional options. The WithAPIOptions helper returns a functional option for zero or more middleware mutators. To disable the client computing the payload hash and use Unsigned Payload request signature add v4.SwapComputePayloadSHA256ForUnsignedPayloadMiddleware .
+
You can change this behavior by modifying the operation method’s Middleware using functional options. The WithAPIOptions helper returns a functional option for zero or more middleware mutators. To disable the client computing the payload hash and use Unsigned Payload request signature add v4.SwapComputePayloadSHA256ForUnsignedPayloadMiddleware .
resp , err := client . PutObject ( context . TODO (), & s3 . PutObjectInput {
Bucket : & bucketName ,
Key : & objectName ,
@@ -893,7 +897,7 @@
@@ -941,7 +945,7 @@
- © 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+ © 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/security/compliance-validation/index.html b/docs/docs/security/compliance-validation/index.html
index e8003fb39d4..f4967c5b84d 100644
--- a/docs/docs/security/compliance-validation/index.html
+++ b/docs/docs/security/compliance-validation/index.html
@@ -3,7 +3,7 @@
-
+
@@ -31,7 +31,6 @@
-
@@ -112,7 +111,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -134,7 +133,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -566,7 +565,7 @@
Compliance Validation for this AWS Product or Service
- © 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+ © 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/security/data-protection/index.html b/docs/docs/security/data-protection/index.html
index 7a3cd8b3616..033ea203a12 100644
--- a/docs/docs/security/data-protection/index.html
+++ b/docs/docs/security/data-protection/index.html
@@ -3,7 +3,7 @@
-
+
@@ -27,7 +27,6 @@
-
@@ -106,7 +105,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -128,7 +127,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -558,7 +557,7 @@
Data Protection in this AWS Product or Service
- © 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+ © 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/security/disaster-recovery-resiliency/index.html b/docs/docs/security/disaster-recovery-resiliency/index.html
index 3b817627160..d485dcca7a6 100644
--- a/docs/docs/security/disaster-recovery-resiliency/index.html
+++ b/docs/docs/security/disaster-recovery-resiliency/index.html
@@ -3,7 +3,7 @@
-
+
@@ -29,7 +29,6 @@
-
@@ -134,7 +133,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -550,7 +549,7 @@
Resilience for this AWS Product or Service
- © 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+ © 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/security/iam/index.html b/docs/docs/security/iam/index.html
index ed99dcd7b19..bfacb7fd0e0 100644
--- a/docs/docs/security/iam/index.html
+++ b/docs/docs/security/iam/index.html
@@ -3,7 +3,7 @@
-
+
@@ -28,7 +28,6 @@
-
@@ -109,7 +108,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -131,7 +130,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -550,7 +549,7 @@
Identity and Access Management for this AWS Product or Service
- © 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+ © 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/security/index.html b/docs/docs/security/index.html
index 2528ef80692..d7d9bda5260 100644
--- a/docs/docs/security/index.html
+++ b/docs/docs/security/index.html
@@ -3,7 +3,7 @@
-
+
@@ -26,7 +26,6 @@
-
@@ -102,7 +101,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -124,7 +123,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -597,7 +596,7 @@
- © 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+ © 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/security/infrastructure-security/index.html b/docs/docs/security/infrastructure-security/index.html
index 3568c02906c..1dde51496ce 100644
--- a/docs/docs/security/infrastructure-security/index.html
+++ b/docs/docs/security/infrastructure-security/index.html
@@ -3,7 +3,7 @@
-
+
@@ -30,7 +30,6 @@
-
@@ -111,7 +110,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -133,7 +132,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -545,7 +544,7 @@
Infrastructure Security for this AWS Product or Service
- © 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+ © 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/security/tls/index.html b/docs/docs/security/tls/index.html
index a01da604f70..1d5fcafadc2 100644
--- a/docs/docs/security/tls/index.html
+++ b/docs/docs/security/tls/index.html
@@ -3,7 +3,7 @@
-
+
@@ -28,7 +28,6 @@
-
@@ -109,7 +108,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -131,7 +130,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -587,7 +586,7 @@
Enforcing a Minimum TLS Version
-
© 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+
© 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/docs/unit-testing/index.html b/docs/docs/unit-testing/index.html
index a86d70e14f7..fdbb8e112b4 100644
--- a/docs/docs/unit-testing/index.html
+++ b/docs/docs/unit-testing/index.html
@@ -3,7 +3,7 @@
-
+
@@ -26,7 +26,6 @@
-
@@ -105,7 +104,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -127,7 +126,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -418,6 +417,17 @@
+
+
@@ -701,7 +711,7 @@
Mocking Client Operations
- © 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+ © 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/index.html b/docs/index.html
index 44f4cde5a41..a445a7eb8c5 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -3,7 +3,7 @@
-
+
@@ -49,7 +49,6 @@
-
@@ -125,7 +124,7 @@
aria-label="Search this site…"
autocomplete="off"
- data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.b72800ff9f162da780238d86bb1fe844.json"
+ data-offline-search-index-json-src="/aws-sdk-go-v2/offline-search-index.6031b00f9c477f93ed55541508b521cb.json"
data-offline-search-base-href="/"
data-offline-search-max-results="10"
>
@@ -304,7 +303,7 @@
Extensible
- © 2022 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
+ © 2023 Amazon Web Services, Inc. or its affiliates. All Rights Reserved
diff --git a/docs/sitemap.xml b/docs/sitemap.xml
index acea8fc1fd7..cb95b44ca54 100644
--- a/docs/sitemap.xml
+++ b/docs/sitemap.xml
@@ -45,7 +45,7 @@
2022-05-16T15:58:05-04:00
https://aws.github.io/aws-sdk-go-v2/docs/making-requests/
- 2022-08-05T21:08:18+02:00
+ 2022-10-06T12:21:54-07:00
https://aws.github.io/aws-sdk-go-v2/docs/handling-errors/
2021-06-23T15:45:17-07:00
@@ -66,10 +66,10 @@
2020-12-23T13:28:16-08:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/
- 2021-01-14T12:54:53-08:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/sdk-utilities/rds/
- 2021-04-20T16:59:04-07:00
+ 2023-02-14T12:11:29-05:00
https://aws.github.io/aws-sdk-go-v2/docs/sdk-utilities/cloudfront/
2020-11-24T14:29:02-08:00
@@ -102,231 +102,231 @@
2022-04-18T10:28:56-07:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/accesskeylastused/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/sdk-utilities/ec2-imds/
- 2021-01-15T13:01:18-08:00
+ 2023-02-01T05:55:09-08:00
https://aws.github.io/aws-sdk-go-v2/docs/sdk-utilities/s3/
- 2021-03-18T10:34:41-07:00
+ 2023-02-16T04:35:09+09:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sts/assumerole/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/attachuserpolicy/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/
2020-12-23T13:28:16-08:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sqs/changemsgvisibility/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sqs/configurelpqueue/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/s3/copyobject/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/createaccesskey/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/createaccountalias/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/s3/createbucket/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/cloudwatch/createcustommetric/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/cloudwatch/createenablemetricalarm/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/ec2/createimage/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/ec2/createinstance/
- 2022-05-16T16:17:17-04:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/kms/createkey/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sqs/createlpqueue/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/createpolicy/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sqs/createqueue/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sns/createtopic/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/createuser/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sqs/deadletterqueue/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/kms/decryptdata/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/deleteaccesskey/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/deleteaccountalias/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/s3/deletebucket/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sqs/deletemessage/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/s3/deleteobject/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/ssm/deleteparameter/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sqs/deletequeue/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/deleteservercert/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/deleteuser/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/cloudwatch/describealarms/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/ec2/describeinstances/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/dynamodb/describetable/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/ec2/describevpcendpoints/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/detachuserpolicy/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/cloudwatch/disablealarm/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/kms/encryptdata/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/s3/generatepresignedurl/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/s3/getbucketacl/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/s3/getobjectacl/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/ssm/getparameter/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/getpolicy/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sqs/getqueueurl/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/getservercert/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/listaccesskeys/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/listaccountaliases/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/listadmins/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/s3/listbuckets/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/cloudwatch/listmetrics/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/s3/listobjects/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sqs/listqueues/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/listservercerts/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sns/listsubscriptions/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sns/listtopics/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/listusers/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/ec2/monitorinstances/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sns/publish/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/cloudwatch/putevent/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/s3/putobject/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/ssm/putparameter/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/ec2/rebootinstances/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sqs/receivelpmessage/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sqs/receivemessage/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/kms/reencryptdata/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/configuring-sdk/retries-timeouts/
2022-03-07T15:24:12-08:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/dynamodb/scanitems/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sqs/sendmessage/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/ec2/startinstances/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/ec2/stopinstances/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/sns/subscribe/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/updateaccesskey/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/updateservercert/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00
https://aws.github.io/aws-sdk-go-v2/docs/code-examples/iam/updateuser/
- 2022-05-16T14:47:58-07:00
+ 2022-08-10T20:22:46+00:00