interface ApprovalConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AgentRegistry.CfnRegistry.ApprovalConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsagentregistry#CfnRegistry_ApprovalConfigurationProperty |
Java | software.amazon.awscdk.services.agentregistry.CfnRegistry.ApprovalConfigurationProperty |
Python | aws_cdk.aws_agentregistry.CfnRegistry.ApprovalConfigurationProperty |
TypeScript | aws-cdk-lib » aws_agentregistry » CfnRegistry » ApprovalConfigurationProperty |
Configuration for the registry's record approval workflow.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_agentregistry as agentregistry } from 'aws-cdk-lib';
const approvalConfigurationProperty: agentregistry.CfnRegistry.ApprovalConfigurationProperty = {
autoApprovalRules: ['autoApprovalRules'],
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | string[] | The rules that determine which registry records are automatically approved on submission. |
autoApprovalRules?
Type:
string[]
(optional)
The rules that determine which registry records are automatically approved on submission.
When omitted or empty, submitted records require manual review.

.NET
Go
Java
Python
TypeScript