interface RegistryPolicyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ECR.RegistryPolicyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsecr#RegistryPolicyReference |
Java | software.amazon.awscdk.interfaces.ecr.RegistryPolicyReference |
Python | aws_cdk.interfaces.aws_ecr.RegistryPolicyReference |
TypeScript | aws-cdk-lib » interfaces » aws_ecr » RegistryPolicyReference |
A reference to a RegistryPolicy resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecr as interfaces_aws_ecr } from 'aws-cdk-lib/interfaces';
const registryPolicyReference: interfaces_aws_ecr.RegistryPolicyReference = {
registryId: 'registryId',
};
Properties
| Name | Type | Description |
|---|---|---|
| registry | string | The RegistryId of the RegistryPolicy resource. |
registryId
Type:
string
The RegistryId of the RegistryPolicy resource.

.NET
Go
Java
Python
TypeScript