class Awskit::Gen::Cookbook::KitchenTemplateBinding

Attributes

associate_public_ip[RW]
availability_zone[RW]
aws_ssh_key[RW]
iam_profile_name[RW]
instance_type[RW]
platform_ami[RW]
platform_username[RW]
region[RW]
security_group[RW]
service_name[RW]
subnet_id[RW]
transport_ssh_key[RW]
transport_username[RW]

Public Class Methods

new(options) click to toggle source
# File lib/awskit/gen/cookbook/kitchen_template_binding.rb, line 19
def initialize(options)
  self.aws_ssh_key = options[:aws_ssh_key]
  self.security_group = options[:security_group]
  self.region = options[:region]
  self.availability_zone = options[:availability_zone]
  self.subnet_id = options[:subnet_id]
  self.iam_profile_name = options[:iam_profile_name]
  self.instance_type = options[:instance_type]
  self.associate_public_ip = options[:associate_public_ip]
  self.transport_ssh_key = options[:transport_ssh_key]
  self.transport_username = options[:transport_username]
  self.platform_ami = options[:platform_ami]
  self.platform_username = options[:platform_username]
  self.service_name = options[:service_name]
end

Public Instance Methods

get_binding() click to toggle source
# File lib/awskit/gen/cookbook/kitchen_template_binding.rb, line 35
def get_binding
  binding()
end