AwsPs.FakeClient.GetInstances C# (CSharp) Method

GetInstances() public method

public GetInstances ( ) : IEnumerable
return IEnumerable
        public IEnumerable<Instance> GetInstances()
        {
            return new[]
                       {
                            new Instance{ Name = "Service 1", Id = "ip-123456", Dns = "my-dns-is-really-long-hello-hello", Ip = "192.123.531.23", State = "running" },
                            new Instance{ Name = "Service 2", Id = "ip-123456", Dns = "my-dns-is-really-long-hello-hello", Ip = "192.123.531.23", State = "running" },
                            new Instance{ Name = "Service 3 has long name", Id = "ip-123456", Dns = "my-dns-is-really-long-hello-hello", Ip = "192.123.531.23", State = "running" },
                            new Instance{ Name = "Service 4", Id = "ip-123456", Dns = "my-dns-is-really-long-hello-hello", Ip = "192.123.531.23", State = "running" },
                            new Instance{ Name = "Service 5", Id = "ip-123456", Dns = "my-dns-is-really-long-hello-hello", Ip = "192.123.531.23", State = "running" },
                       };
        }