Acknowledgment

class aws_cdk.Acknowledgment(*, id, reason)

Bases: object

An acknowledgment of a validation rule, used to suppress it from output.

Parameters:
  • id (str) – The rule ID to acknowledge.

  • reason (str) – The reason for acknowledging this rule.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk as cdk

acknowledgment = cdk.Acknowledgment(
    id="id",
    reason="reason"
)

Attributes

id

The rule ID to acknowledge.

reason

The reason for acknowledging this rule.