Interface CfnPackageGroupPropsMixin.RestrictionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPackageGroupPropsMixin.RestrictionsProperty.Jsii$Proxy
Enclosing class:
CfnPackageGroupPropsMixin

@Stability(Stable) public static interface CfnPackageGroupPropsMixin.RestrictionsProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.codeartifact.*;
 RestrictionsProperty restrictionsProperty = RestrictionsProperty.builder()
         .externalUpstream(RestrictionTypeProperty.builder()
                 .repositories(List.of("repositories"))
                 .restrictionMode("restrictionMode")
                 .build())
         .internalUpstream(RestrictionTypeProperty.builder()
                 .repositories(List.of("repositories"))
                 .restrictionMode("restrictionMode")
                 .build())
         .publish(RestrictionTypeProperty.builder()
                 .repositories(List.of("repositories"))
                 .restrictionMode("restrictionMode")
                 .build())
         .build();
 

See Also: