Class: CfnGuardian::Models::InternalSslCheck
- 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) ⇒ InternalSslCheck
constructor
A new instance of InternalSslCheck.
Constructor Details
#initialize(resource) ⇒ InternalSslCheck
Returns a new instance of InternalSslCheck.
124 125 126 127 128 129 130 131 |
# File 'lib/cfnguardian/models/check.rb', line 124 def initialize(resource) super(resource) @group = 'InternalSsl' @name = 'InternalSslCheck' @subnets = resource['Subnets'] @vpc = resource['VpcId'] @environment = resource['Environment'] end |