Class: Aws::ECR::Types::SigningRepositoryFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::SigningRepositoryFilter
- Defined in:
- gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb
Overview
A repository filter used to determine which repositories have their images automatically signed on push. Each filter consists of a filter type and filter value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filter ⇒ String
The filter value used to match repository names.
-
#filter_type ⇒ String
The type of filter to apply.
Instance Attribute Details
#filter ⇒ String
The filter value used to match repository names. When using
WILDCARD_MATCH, the * character matches any sequence of
characters.
Examples:
myapp/*- Matches all repositories starting withmyapp/*/production- Matches all repositories ending with/production*prod*- Matches all repositories containingprod
4704 4705 4706 4707 4708 4709 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 4704 class SigningRepositoryFilter < Struct.new( :filter, :filter_type) SENSITIVE = [] include Aws::Structure end |
#filter_type ⇒ String
The type of filter to apply. Currently, only WILDCARD_MATCH is
supported, which uses wildcard patterns to match repository names.
4704 4705 4706 4707 4708 4709 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 4704 class SigningRepositoryFilter < Struct.new( :filter, :filter_type) SENSITIVE = [] include Aws::Structure end |