interface CfnPullThroughCacheRuleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECR.Mixins.CfnPullThroughCacheRuleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecr/mixins#CfnPullThroughCacheRuleMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ecr.mixins.CfnPullThroughCacheRuleMixinProps |
Python | aws_cdk.mixins_preview.aws_ecr.mixins.CfnPullThroughCacheRuleMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ecr » mixins » CfnPullThroughCacheRuleMixinProps |
Properties for CfnPullThroughCacheRulePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ecr_mixins } from '@aws-cdk/mixins-preview/aws-ecr';
const cfnPullThroughCacheRuleMixinProps: ecr_mixins.CfnPullThroughCacheRuleMixinProps = {
credentialArn: 'credentialArn',
customRoleArn: 'customRoleArn',
ecrRepositoryPrefix: 'ecrRepositoryPrefix',
upstreamRegistry: 'upstreamRegistry',
upstreamRegistryUrl: 'upstreamRegistryUrl',
upstreamRepositoryPrefix: 'upstreamRepositoryPrefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| credential | string | The ARN of the Secrets Manager secret associated with the pull through cache rule. |
| custom | string | The ARN of the IAM role associated with the pull through cache rule. |
| ecr | string | The Amazon ECR repository prefix associated with the pull through cache rule. |
| upstream | string | The name of the upstream source registry associated with the pull through cache rule. |
| upstream | string | The upstream registry URL associated with the pull through cache rule. |
| upstream | string | The upstream repository prefix associated with the pull through cache rule. |
credentialArn?
Type:
string
(optional)
The ARN of the Secrets Manager secret associated with the pull through cache rule.
customRoleArn?
Type:
string
(optional)
The ARN of the IAM role associated with the pull through cache rule.
ecrRepositoryPrefix?
Type:
string
(optional)
The Amazon ECR repository prefix associated with the pull through cache rule.
upstreamRegistry?
Type:
string
(optional)
The name of the upstream source registry associated with the pull through cache rule.
upstreamRegistryUrl?
Type:
string
(optional)
The upstream registry URL associated with the pull through cache rule.
upstreamRepositoryPrefix?
Type:
string
(optional)
The upstream repository prefix associated with the pull through cache rule.

.NET
Go
Java
Python
TypeScript