interface CfnRegistryPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EventSchemas.CfnRegistryPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awseventschemas#CfnRegistryPolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.eventschemas.CfnRegistryPolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_eventschemas.CfnRegistryPolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_eventschemas » CfnRegistryPolicyMixinProps |
Properties for CfnRegistryPolicyPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eventschemas as eventschemas } from '@aws-cdk/cfn-property-mixins';
declare const policy: any;
const cfnRegistryPolicyMixinProps: eventschemas.CfnRegistryPolicyMixinProps = {
policy: policy,
registryName: 'registryName',
revisionId: 'revisionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| policy? | any | A resource-based policy. |
| registry | string | The name of the registry. |
| revision | string | The revision ID of the policy. |
policy?
Type:
any
(optional)
A resource-based policy.
registryName?
Type:
string
(optional)
The name of the registry.
revisionId?
Type:
string
(optional)
The revision ID of the policy.

.NET
Go
Java
Python
TypeScript