Class: Aws::CodeArtifact::Types::PackageOriginRestrictions
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::PackageOriginRestrictions
- Defined in:
- gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb
Overview
Details about the origin restrictions set on the package. The package origin restrictions determine how new versions of a package can be added to a specific repository.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#publish ⇒ String
The package origin configuration that determines if new versions of the package can be published directly to the repository.
-
#upstream ⇒ String
The package origin configuration that determines if new versions of the package can be added to the repository from an external connection or upstream source.
Instance Attribute Details
#publish ⇒ String
The package origin configuration that determines if new versions of the package can be published directly to the repository.
3230 3231 3232 3233 3234 3235 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 3230 class PackageOriginRestrictions < Struct.new( :publish, :upstream) SENSITIVE = [] include Aws::Structure end |
#upstream ⇒ String
The package origin configuration that determines if new versions of the package can be added to the repository from an external connection or upstream source.
3230 3231 3232 3233 3234 3235 |
# File 'gems/aws-sdk-codeartifact/lib/aws-sdk-codeartifact/types.rb', line 3230 class PackageOriginRestrictions < Struct.new( :publish, :upstream) SENSITIVE = [] include Aws::Structure end |