Class: CfnGuardian::Models::AzureFileCheck
- Defined in:
- lib/cfnguardian/models/check.rb
Instance Attribute Summary
Attributes inherited from BaseCheck
#branch, #environment, #group, #handler, #memory, #name, #package, #runtime, #subnets, #timeout, #type, #version, #vpc
Instance Method Summary collapse
-
#initialize(resource) ⇒ AzureFileCheck
constructor
A new instance of AzureFileCheck.
Constructor Details
#initialize(resource) ⇒ AzureFileCheck
Returns a new instance of AzureFileCheck.
209 210 211 212 213 214 215 216 217 218 219 |
# File 'lib/cfnguardian/models/check.rb', line 209 def initialize(resource) super(resource) @group = 'AzureFile' @name = 'AzureFileCheck' @package = 'azure-file-check' @handler = 'handler.file_check' @version = '6a5abdbed4408592a3045638a1a5a74c89a37e12' @runtime = 'python3.11' @memory = 256 @timeout = 600 end |