Gems/AWSMetrics/cdk/aws_metrics/policy_statements_builder/admin_policy_statements_builder.py [187:217]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    body='arn:${AWS::Partition}:cloudwatch::${AWS::AccountId}:dashboard/${DashboardName}',
                    variables={
                        'DashboardName': component.dashboard_name
                    }
                )
            ],
            sid='UpdateDashboard'
        )

        return self

    def add_data_lake_integration_policy_statements(
            self,
            component: DataLakeIntegration) -> AdminPolicyStatementsBuilder:
        """
        Add the policy statements to retrieve the analytics bucket content and
        update Glue database, table and crawler for admin.

        :param component: CloudWatch dashboard component created by the metrics gem.
        :return: The policy statement builder itself.
        """
        if not component:
            return self

        self._policy_statement_mapping['glue_database'] = iam.PolicyStatement(
            actions=[
                'glue:GetDatabase',
                'glue:UpdateDatabase'
            ],
            effect=iam.Effect.ALLOW,
            resources=[
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Gems/AWSMetrics/cdv1/aws_metrics/policy_statements_builder/admin_policy_statements_builder.py [185:215]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        body='arn:${AWS::Partition}:cloudwatch::${AWS::AccountId}:dashboard/${DashboardName}',
                        variables={
                            'DashboardName': component.dashboard_name
                        }
                    )
                ],
            sid='UpdateDashboard'
        )

        return self

    def add_data_lake_integration_policy_statements(
            self,
            component: DataLakeIntegration) -> AdminPolicyStatementsBuilder:
        """
        Add the policy statements to retrieve the analytics bucket content and
        update Glue database, table and crawler for admin.

        :param component: CloudWatch dashboard component created by the metrics gem.
        :return: The policy statement builder itself.
        """
        if not component:
            return self

        self._policy_statement_mapping['glue_database'] = iam.PolicyStatement(
            actions=[
                'glue:GetDatabase',
                'glue:UpdateDatabase'
            ],
            effect=iam.Effect.ALLOW,
            resources=[
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



