high-morning-17948
11/27/2018, 3:53 AMwhite-balloon-205
let awsProvider = new aws.Provider("foo", {
skipCredentialsValidation: true,
skipMetadataApiCheck: true,
s3ForcePathStyle: true,
accessKey: "mockAccessKey",
secretKey: "mockSecretKey",
endpoints: [{
dynamodb: "<http://localhost:4569>",
lambda: "<http://localhost:4574>",
}],
})
let table = new aws.dynamodb.Table("t", {
//...
}, { provider: awsProvider })
Definitely something we should add an example for!high-morning-17948
11/27/2018, 2:01 PM