Interface CfnPackage.OriginConfigurationProperty

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

@Stability(Stable) public static interface CfnPackage.OriginConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The package origin configuration for the package.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.codeartifact.*;
 OriginConfigurationProperty originConfigurationProperty = OriginConfigurationProperty.builder()
         .restrictions(RestrictionsProperty.builder()
                 .publish("publish")
                 .upstream("upstream")
                 .build())
         .build();
 

See Also: