Class: CfnGuardian::Models::InternalHttpCheck
- 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) ⇒ InternalHttpCheck
constructor
A new instance of InternalHttpCheck.
Constructor Details
#initialize(resource) ⇒ InternalHttpCheck
Returns a new instance of InternalHttpCheck.
63 64 65 66 67 68 69 70 |
# File 'lib/cfnguardian/models/check.rb', line 63 def initialize(resource) super(resource) @group = 'InternalHttp' @name = 'InternalHttpCheck' @subnets = resource['Subnets'] @vpc = resource['VpcId'] @environment = resource['Environment'] end |