Skip to content

feature request: DynamoDB DescribeContributorInsights implementation #13165

@aleslash

Description

@aleslash

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

No one assigned

    Labels

    aws:dynamodbAmazon DynamoDBstatus: backlogTriaged but not yet being worked ontype: featureNew feature, or improvement to an existing feature

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions