interface ApprovalConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AgentRegistry.CfnRegistryPropsMixin.ApprovalConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsagentregistry#CfnRegistryPropsMixin_ApprovalConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.agentregistry.CfnRegistryPropsMixin.ApprovalConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_agentregistry.CfnRegistryPropsMixin.ApprovalConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_agentregistry » CfnRegistryPropsMixin » 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/cfn-property-mixins';
const approvalConfigurationProperty: agentregistry.CfnRegistryPropsMixin.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