Class: CfNetworkAclAssociation

Inherits:
Object
  • Object
show all
Includes:
CfBase
Defined in:
lib/cf_factory/vpc/cf_network_acl_association.rb

Instance Method Summary collapse

Methods included from CfBase

#generate, #generate_ref, #get_deletion_policy, #get_name, #hash_to_string, #retrieve_attribute, #set_meta_data, #set_quotes, #set_tags

Constructor Details

#initialize(name, subnet, network_acl) ⇒ CfNetworkAclAssociation

Returns a new instance of CfNetworkAclAssociation.



6
7
8
9
10
# File 'lib/cf_factory/vpc/cf_network_acl_association.rb', line 6

def initialize(name, subnet, network_acl)
  @name = name
  @subnet = subnet
  @network_acl = network_acl
end

Instance Method Details

#get_cf_attributesObject



16
17
18
# File 'lib/cf_factory/vpc/cf_network_acl_association.rb', line 16

def get_cf_attributes
  {}
end

#get_cf_propertiesObject



20
21
22
# File 'lib/cf_factory/vpc/cf_network_acl_association.rb', line 20

def get_cf_properties
  {"SubnetId" => @subnet.generate_ref, "NetworkAclId" => @network_acl.generate_ref}
end

#get_cf_typeObject



12
13
14
# File 'lib/cf_factory/vpc/cf_network_acl_association.rb', line 12

def get_cf_type
  "AWS::EC2::SubnetNetworkAclAssociation"
end