MDAA TS Docs
    Preparing search index...

    Interface IMdaaTablePolicyStatementsBuilder

    Builder for the additional statements appended to the table policy after the mandatory deny-non-TLS statement. Mirrors IMdaaTableBucketPolicyStatementsBuilder: the policy is created inside the MdaaTable constructor, so the table ARN token is passed to buildStatements rather than requiring the caller to have it beforehand. jsii does not support function-typed properties, so this method-bearing interface is the callback equivalent.

    interface IMdaaTablePolicyStatementsBuilder {
        buildStatements(tableArn: string): PolicyStatement[];
    }
    Index

    Methods

    • Builds the additional statements (e.g. table-level grant Allow statements) to append after the mandatory deny-non-TLS statement in the table policy.

      Parameters

      • tableArn: string

        The ARN of the table (the CfnTable attribute token).

      Returns PolicyStatement[]

      The statements to append to the table policy.