-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Closed
Labels
aws:dynamodbAmazon DynamoDBAmazon DynamoDBstatus: backlogTriaged but not yet being worked onTriaged but not yet being worked ontype: featureNew feature, or improvement to an existing featureNew feature, or improvement to an existing feature
Description
Is there an existing issue for this?
- I have searched the existing issues
Feature description
I'm using ACK with localstack. When you create a resource, it is expected that it get in the status synced true. The dynamodb table don't get in this status because the DescribeContributorInsights it is not implemented.
The suggestion is to be implemented returning an object with the table_name and the ContributorInsightsStatus with DISABLED value.
🧑💻 Implementation
In the DynamoDBProvider implement the function as
@handler("DescribeContributorInsights")
def describe_contributor_insights(
self,
context: RequestContext,
table_name: TableName,
**kwargs,
) -> DescribeContributorInsightsOutput:
return DescribeContributorInsightsOutput(
TableName=table_name,
ContributorInsightsStatus="DISABLED"
)Anything else?
No response
Metadata
Metadata
Assignees
Labels
aws:dynamodbAmazon DynamoDBAmazon DynamoDBstatus: backlogTriaged but not yet being worked onTriaged but not yet being worked ontype: featureNew feature, or improvement to an existing featureNew feature, or improvement to an existing feature