Class: Aws::ECR::Types::RepositoryFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::RepositoryFilter
- Defined in:
- gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb
Overview
The filter settings used with image replication. Specifying a repository filter to a replication rule provides a method for controlling which repositories in a private registry are replicated. If no filters are added, the contents of all repositories are replicated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filter ⇒ String
The repository filter details.
-
#filter_type ⇒ String
The repository filter type.
Instance Attribute Details
#filter ⇒ String
The repository filter details. When the PREFIX_MATCH
filter type
is specified, this value is required and should be the repository
name prefix to configure replication for.
3662 3663 3664 3665 3666 3667 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 3662 class RepositoryFilter < Struct.new( :filter, :filter_type) SENSITIVE = [] include Aws::Structure end |
#filter_type ⇒ String
The repository filter type. The only supported value is
PREFIX_MATCH
, which is a repository name prefix specified with the
filter
parameter.
3662 3663 3664 3665 3666 3667 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 3662 class RepositoryFilter < Struct.new( :filter, :filter_type) SENSITIVE = [] include Aws::Structure end |