Class: Aws::ECR::Types::PutAccountSettingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::PutAccountSettingRequest
- Defined in:
- gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the account setting, such as
BASIC_SCAN_TYPE_VERSION
orREGISTRY_POLICY_SCOPE
. -
#value ⇒ String
Setting value that is specified.
Instance Attribute Details
#name ⇒ String
The name of the account setting, such as BASIC_SCAN_TYPE_VERSION
or REGISTRY_POLICY_SCOPE
.
2997 2998 2999 3000 3001 3002 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2997 class PutAccountSettingRequest < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
Setting value that is specified. The following are valid values for
the basic scan type being used: AWS_NATIVE
or CLAIR
. The
following are valid values for the registry policy scope being used:
V1
or V2
.
2997 2998 2999 3000 3001 3002 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2997 class PutAccountSettingRequest < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |