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_VERSIONorREGISTRY_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.
3595 3596 3597 3598 3599 3600 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 3595 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.
3595 3596 3597 3598 3599 3600 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 3595 class PutAccountSettingRequest < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |