Is there a way I can capture the end-point for the dynamodb generated by serverless?
I am currently able to capture the ARN, by:
resources:
Resources:
TenantkeysTable:
Type: 'AWS::DynamoDB::Table'
Properties:
TableName: tenantkeys
AttributeDefinitions:
-
AttributeName: tenant_key
AttributeType: S
KeySchema:
-
AttributeName: tenant_key
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 10
WriteCapacityUnits: 10
provider:
iamRoleStatements:
-
Effect: Allow
Action:
- dynamodb:*
Resource:
- Fn::GetAtt: [ TenantkeysTable, "Arn" ]
But is there a endpoint
equivalent?