We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac26486 commit a8f2363Copy full SHA for a8f2363
README.md
@@ -30,6 +30,7 @@ This example shows how you can use the v2 SDK to make an API request using the S
30
package main
31
32
import (
33
+ "github.com/aws/aws-sdk-go-v2/aws"
34
"github.com/aws/aws-sdk-go-v2/aws/endpoints"
35
"github.com/aws/aws-sdk-go-v2/aws/external"
36
"github.com/aws/aws-sdk-go-v2/service/dynamodb"
@@ -52,7 +53,7 @@ func main() {
52
53
54
// Build the request with its input parameters
55
req := svc.DescribeTableRequest(&dynamodb.DescribeTableInput{
- Tablename: aws.String("myTable"),
56
+ TableName: aws.String("myTable"),
57
})
58
59
// Send the request, and get the response or error back
0 commit comments