Class: Aws::ECR::Types::SigningRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::SigningRule
- Defined in:
- gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb
Overview
A signing rule that specifies a signing profile and optional repository filters. When an image is pushed to a matching repository, a signing job is created using the specified profile.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#repository_filters ⇒ Array<Types::SigningRepositoryFilter>
A list of repository filters that determine which repositories have their images signed on push.
-
#signing_profile_arn ⇒ String
The ARN of the Amazon Web Services Signer signing profile to use for signing images that match this rule.
Instance Attribute Details
#repository_filters ⇒ Array<Types::SigningRepositoryFilter>
A list of repository filters that determine which repositories have their images signed on push. If no filters are specified, all images pushed to the registry are signed using the rule's signing profile. Maximum of 100 filters per rule.
4735 4736 4737 4738 4739 4740 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 4735 class SigningRule < Struct.new( :signing_profile_arn, :repository_filters) SENSITIVE = [] include Aws::Structure end |
#signing_profile_arn ⇒ String
The ARN of the Amazon Web Services Signer signing profile to use for signing images that match this rule. For more information about signing profiles, see Signing profiles in the Amazon Web Services Signer Developer Guide.
4735 4736 4737 4738 4739 4740 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 4735 class SigningRule < Struct.new( :signing_profile_arn, :repository_filters) SENSITIVE = [] include Aws::Structure end |