Ejemplo n.º 1
0
 def allocation_id(self):
     return GetAtt(self.name, "AllocationId")
Ejemplo n.º 2
0
    def public_ip(self):
        """Return a reference to the public Ip.

        :rtype: e3.aws.cfn.GetAtt
        """
        return GetAtt(self.name, "PublicIp")
Ejemplo n.º 3
0
    def private_ip(self):
        """Return a reference to the private Ip.

        :rtype: e3.aws.cfn.GetAtt
        """
        return GetAtt(self.name, "PrivateIp")
Ejemplo n.º 4
0
 def group_id(self):
     """Return SecurityGroup GroupId."""
     return GetAtt(self.name, "GroupId")