interface RestrictionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CodeArtifact.CfnPackageGroupPropsMixin.RestrictionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscodeartifact#CfnPackageGroupPropsMixin_RestrictionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.codeartifact.CfnPackageGroupPropsMixin.RestrictionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_codeartifact.CfnPackageGroupPropsMixin.RestrictionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_codeartifact » CfnPackageGroupPropsMixin » RestrictionsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codeartifact as codeartifact } from '@aws-cdk/cfn-property-mixins';
const restrictionsProperty: codeartifact.CfnPackageGroupPropsMixin.RestrictionsProperty = {
externalUpstream: {
repositories: ['repositories'],
restrictionMode: 'restrictionMode',
},
internalUpstream: {
repositories: ['repositories'],
restrictionMode: 'restrictionMode',
},
publish: {
repositories: ['repositories'],
restrictionMode: 'restrictionMode',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| external | IResolvable | Restriction | |
| internal | IResolvable | Restriction | |
| publish? | IResolvable | Restriction |
externalUpstream?
Type:
IResolvable | Restriction
(optional)
internalUpstream?
Type:
IResolvable | Restriction
(optional)
publish?
Type:
IResolvable | Restriction
(optional)

.NET
Go
Java
Python
TypeScript