def allocation_id(self): return GetAtt(self.name, "AllocationId")
def public_ip(self): """Return a reference to the public Ip. :rtype: e3.aws.cfn.GetAtt """ return GetAtt(self.name, "PublicIp")
def private_ip(self): """Return a reference to the private Ip. :rtype: e3.aws.cfn.GetAtt """ return GetAtt(self.name, "PrivateIp")
def group_id(self): """Return SecurityGroup GroupId.""" return GetAtt(self.name, "GroupId")