interface CfnRegistryPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EventSchemas.Mixins.CfnRegistryPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awseventschemas/mixins#CfnRegistryPolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.eventschemas.mixins.CfnRegistryPolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_eventschemas.mixins.CfnRegistryPolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_eventschemas » mixins » 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 { mixins as eventschemas_mixins } from '@aws-cdk/mixins-preview/aws-eventschemas';
declare const policy: any;
const cfnRegistryPolicyMixinProps: eventschemas_mixins.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