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

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

        :rtype: e3.aws.cfn.GetAtt
        """
        return GetAtt(self.name, "PrivateIp")
示例#4
0
 def group_id(self):
     """Return SecurityGroup GroupId."""
     return GetAtt(self.name, "GroupId")