Exemple #1
0
        public void DeviceFarmGetRemoteAccessSession()
        {
            #region to-get-a-remote-access-session-1471014119414

            var client   = new AmazonDeviceFarmClient();
            var response = client.GetRemoteAccessSession(new GetRemoteAccessSessionRequest
            {
                Arn = "arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456" // You can get the remote access session ARN by using the list-remote-access-sessions CLI command.
            });

            RemoteAccessSession remoteAccessSession = response.RemoteAccessSession;

            #endregion
        }