Class: Convection::Model::Template::Resource::RDSDBSecurityGroup

Inherits:
Convection::Model::Template::Resource show all
Includes:
Mixin::Taggable
Defined in:
lib/convection/model/template/resource/aws_rds_db_security_group.rb

Overview

AWS::RDS::DBSecurityGroup

Instance Attribute Summary

Attributes inherited from Convection::Model::Template::Resource

#exist, #name, #parent, #properties, #resource_attributes, #template

Instance Method Summary collapse

Methods included from Mixin::Taggable

#immutable_metadata, #render_tags, #tag, #tags

Methods inherited from Convection::Model::Template::Resource

#as_attribute, attach_method, #deletion_policy, #depends_on, #initialize, properties, #property, property, #reference, type, #type, #with_output

Methods included from Mixin::Conditional

#condition, #render_condition

Methods included from DSL::Template::Resource

attach_resource

Methods included from DSL::Helpers

#camel_case, included, method_name, #screaming_snake_case, #snake_case

Methods included from DSL::IntrinsicFunctions

#base64, #find_in_map, #fn_and, #fn_equals, #fn_if, #fn_not, #fn_or, #fn_ref, #get_att, #get_azs, #join, #select

Constructor Details

This class inherits a constructor from Convection::Model::Template::Resource

Instance Method Details

#cidr_ip(cidr_block) ⇒ Object



25
26
27
28
29
# File 'lib/convection/model/template/resource/aws_rds_db_security_group.rb', line 25

def cidr_ip(cidr_block)
  ingress(
    :CIDRIP => cidr_block
  )
end

#descriptionObject #description(value) ⇒ Object

Overloads:

  • #descriptionObject

    Returns the value of the 'GroupDescription' CloudFormation property.

  • #description(value) ⇒ Object

    Sets the 'GroupDescription' CloudFormation property.

    Parameters:

    • value

      the value to set the 'GroupDescription' CloudFormation property to.



14
# File 'lib/convection/model/template/resource/aws_rds_db_security_group.rb', line 14

property :description, 'GroupDescription'

#ec2_security_group(group, owner) ⇒ Object



18
19
20
21
22
23
# File 'lib/convection/model/template/resource/aws_rds_db_security_group.rb', line 18

def ec2_security_group(group, owner)
  ingress(
    :EC2SecurityGroupName => group,
    :EC2SecurityGroupOwnerId => owner
  )
end

#ingressObject #ingress(value) ⇒ Object

Overloads:

  • #ingressObject

    Returns the value of the 'DBSecurityGroupIngress' CloudFormation property.

  • #ingress(value) ⇒ Object

    Sets the 'DBSecurityGroupIngress' CloudFormation property.

    Parameters:

    • value

      the value to set the 'DBSecurityGroupIngress' CloudFormation property to.



16
# File 'lib/convection/model/template/resource/aws_rds_db_security_group.rb', line 16

property :ingress, 'DBSecurityGroupIngress', :type => :list

#render(*args) ⇒ Object



31
32
33
34
35
# File 'lib/convection/model/template/resource/aws_rds_db_security_group.rb', line 31

def render(*args)
  super.tap do |resource|
    render_tags(resource)
  end
end

#vpcObject #vpc(value) ⇒ Object

Overloads:

  • #vpcObject

    Returns the value of the 'EC2VpcId' CloudFormation property.

  • #vpc(value) ⇒ Object

    Sets the 'EC2VpcId' CloudFormation property.

    Parameters:

    • value

      the value to set the 'EC2VpcId' CloudFormation property to.



15
# File 'lib/convection/model/template/resource/aws_rds_db_security_group.rb', line 15

property :vpc, 'EC2VpcId'