interface Acknowledgment
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Acknowledgment |
Go | github.com/aws/aws-cdk-go/awscdk/v2#Acknowledgment |
Java | software.amazon.awscdk.Acknowledgment |
Python | aws_cdk.Acknowledgment |
TypeScript (source) | aws-cdk-lib » Acknowledgment |
An acknowledgment of a validation rule, used to suppress it from output.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
const acknowledgment: cdk.Acknowledgment = {
id: 'id',
reason: 'reason',
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The rule ID to acknowledge. |
| reason | string | The reason for acknowledging this rule. |
id
Type:
string
The rule ID to acknowledge.
reason
Type:
string
The reason for acknowledging this rule.

.NET
Go
Java
Python
TypeScript (